зеркало из https://github.com/stride3d/xkslang.git
[VS2010] Remove use of "= default" and "= delete"
This commit is contained in:
Родитель
786cf4dc48
Коммит
c1d81cb171
|
@ -44,8 +44,7 @@ namespace spv {
|
|||
// missing/TBD functionalities, warnings, and errors.
|
||||
class SpvBuildLogger {
|
||||
public:
|
||||
SpvBuildLogger() = default;
|
||||
SpvBuildLogger(const SpvBuildLogger&) = delete;
|
||||
SpvBuildLogger() {}
|
||||
|
||||
// Registers a TBD functionality.
|
||||
void tbdFunctionality(const std::string& f);
|
||||
|
@ -62,6 +61,8 @@ public:
|
|||
std::string getAllMessages() const;
|
||||
|
||||
private:
|
||||
SpvBuildLogger(const SpvBuildLogger&);
|
||||
|
||||
std::vector<std::string> tbdFeatures;
|
||||
std::vector<std::string> missingFeatures;
|
||||
std::vector<std::string> warnings;
|
||||
|
|
Загрузка…
Ссылка в новой задаче