summaryrefslogtreecommitdiff
path: root/src/resources/resourcemanager
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-11-26 00:51:57 +0300
committerAndrei Karas <akaras@inbox.ru>2018-11-27 20:33:15 +0300
commit0c20db8d108c4123fcc3ecb343759e68567a4d4e (patch)
treef577edeae7b4866d68c084a1eaa229e98c80ea8f /src/resources/resourcemanager
parent2be4fc5b4eee97938657c9c8be73c4b91c8b9826 (diff)
downloadplus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.gz
plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.bz2
plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.tar.xz
plus-0c20db8d108c4123fcc3ecb343759e68567a4d4e.zip
Remove extra ; from different code.
Diffstat (limited to 'src/resources/resourcemanager')
-rw-r--r--src/resources/resourcemanager/resourcemanager.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/resources/resourcemanager/resourcemanager.cpp b/src/resources/resourcemanager/resourcemanager.cpp
index 0a28ac83a..db175ea20 100644
--- a/src/resources/resourcemanager/resourcemanager.cpp
+++ b/src/resources/resourcemanager/resourcemanager.cpp
@@ -96,7 +96,7 @@ void deleteResourceManager()
#ifdef UNITTESTS
if (status)
- reportAlways("Found leaked resources.");
+ reportAlways("Found leaked resources.")
#endif // UNITTESTS
iter = mResources.begin();
@@ -447,7 +447,7 @@ Resource *get(const std::string &idPath,
}
else
{
- reportAlways("Error loading image: %s", idPath.c_str());
+ reportAlways("Error loading image: %s", idPath.c_str())
}
#else // DISABLE_RESOURCE_CACHING
@@ -464,7 +464,7 @@ Resource *get(const std::string &idPath,
}
else
{
- reportAlways("Error loading image: " + idPath);
+ reportAlways("Error loading image: " + idPath)
}
#endif // DISABLE_RESOURCE_CACHING
@@ -493,7 +493,7 @@ void release(Resource *const res)
{
// +++ need reenable after Resource will have type field
// reportAlways("no resource in cache: %s",
-// res->mIdPath.c_str());
+// res->mIdPath.c_str())
delete res;
return;
}
@@ -501,7 +501,7 @@ void release(Resource *const res)
{
// +++ need reenable after Resource will have type field
// reportAlways("in cache other image: %s",
-// res->mIdPath.c_str());
+// res->mIdPath.c_str())
delete res;
return;
}
@@ -619,7 +619,7 @@ void deleteInstance()
}
#ifdef UNITTESTS
if (status)
- reportAlways("Found leaked resources.");
+ reportAlways("Found leaked resources.")
#endif // UNITTESTS
#endif // DUMP_LEAKED_RESOURCES