Commit c1d81cb1 by baldurk

[VS2010] Remove use of "= default" and "= delete"

parent 786cf4dc
...@@ -44,8 +44,7 @@ namespace spv { ...@@ -44,8 +44,7 @@ namespace spv {
// missing/TBD functionalities, warnings, and errors. // missing/TBD functionalities, warnings, and errors.
class SpvBuildLogger { class SpvBuildLogger {
public: public:
SpvBuildLogger() = default; SpvBuildLogger() {}
SpvBuildLogger(const SpvBuildLogger&) = delete;
// Registers a TBD functionality. // Registers a TBD functionality.
void tbdFunctionality(const std::string& f); void tbdFunctionality(const std::string& f);
...@@ -62,6 +61,8 @@ public: ...@@ -62,6 +61,8 @@ public:
std::string getAllMessages() const; std::string getAllMessages() const;
private: private:
SpvBuildLogger(const SpvBuildLogger&);
std::vector<std::string> tbdFeatures; std::vector<std::string> tbdFeatures;
std::vector<std::string> missingFeatures; std::vector<std::string> missingFeatures;
std::vector<std::string> warnings; std::vector<std::string> warnings;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment