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