mirror of
https://github.com/vcmi/vcmi.git
synced 2025-01-12 02:28:11 +02:00
Compile fix for #847
This commit is contained in:
parent
86e7d96b39
commit
ba646b1d41
@ -11,7 +11,6 @@
|
||||
* Full text of license available in license.txt file, in main folder
|
||||
*
|
||||
*/
|
||||
|
||||
class Settings;
|
||||
class SettingsListener;
|
||||
|
||||
|
@ -98,7 +98,7 @@ public:
|
||||
JsonWriter(std::ostream &output, const JsonNode &node);
|
||||
};
|
||||
|
||||
std::ostream & operator<<(std::ostream &out, const JsonNode &node);
|
||||
DLL_LINKAGE std::ostream & operator<<(std::ostream &out, const JsonNode &node);
|
||||
|
||||
//Tiny string class that uses const char* as data for speed, members are private
|
||||
//for ease of debugging and some compatibility with std::string
|
||||
@ -184,3 +184,5 @@ public:
|
||||
// validate with external schema
|
||||
JsonValidator(JsonNode &root, const JsonNode &schema, bool minimize=false);
|
||||
};
|
||||
|
||||
|
||||
|
@ -550,7 +550,6 @@ DLL_LINKAGE const CArtifactInstance *ArtifactLocation::getArt() const
|
||||
}
|
||||
}
|
||||
return NULL;
|
||||
return NULL;
|
||||
}
|
||||
|
||||
DLL_LINKAGE CArtifactInstance *ArtifactLocation::getArt()
|
||||
|
Loading…
Reference in New Issue
Block a user