diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-08-07 02:51:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-08-07 02:51:01 +0300 |
commit | 8b60d77bea69c08d95791d739915c6da5d1986bb (patch) | |
tree | 4c9500c4d23da8251c933cfaf3f8c459e3660d29 /src/resources/resourcemanager/resourcemanager.cpp | |
parent | 6f7f0b79bbf66db2f9200ab1450166cb699e3a08 (diff) | |
download | plus-8b60d77bea69c08d95791d739915c6da5d1986bb.tar.gz plus-8b60d77bea69c08d95791d739915c6da5d1986bb.tar.bz2 plus-8b60d77bea69c08d95791d739915c6da5d1986bb.tar.xz plus-8b60d77bea69c08d95791d739915c6da5d1986bb.zip |
Disable errors "in cache other image" because here can be false positives.
Diffstat (limited to 'src/resources/resourcemanager/resourcemanager.cpp')
-rw-r--r-- | src/resources/resourcemanager/resourcemanager.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/resources/resourcemanager/resourcemanager.cpp b/src/resources/resourcemanager/resourcemanager.cpp index c9d9e1486..5cbf005aa 100644 --- a/src/resources/resourcemanager/resourcemanager.cpp +++ b/src/resources/resourcemanager/resourcemanager.cpp @@ -498,8 +498,9 @@ void release(Resource *const res) } if (resIter->second != res) { - reportAlways("in cache other image: %s", - res->mIdPath.c_str()); +// +++ need reenable after Resource will have type field +// reportAlways("in cache other image: %s", +// res->mIdPath.c_str()); delete res; return; } |