aboutsummaryrefslogtreecommitdiff
path: root/src/application.hpp
diff options
context:
space:
mode:
authorcrupest <crupest@outlook.com>2018-12-08 22:51:48 +0800
committercrupest <crupest@outlook.com>2018-12-08 22:51:48 +0800
commit3ec1e536bd0ced5abcf82e84d1eee42960912b37 (patch)
treef2a283d4932f593fe32c2384d6ee86e6c5d8a5b4 /src/application.hpp
parentb028e74a48de181ca078ad3bf4ababf4fa146cd3 (diff)
downloadcru-3ec1e536bd0ced5abcf82e84d1eee42960912b37.tar.gz
cru-3ec1e536bd0ced5abcf82e84d1eee42960912b37.tar.bz2
cru-3ec1e536bd0ced5abcf82e84d1eee42960912b37.zip
Add single render objects.
Diffstat (limited to 'src/application.hpp')
-rw-r--r--src/application.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.hpp b/src/application.hpp
index a8d59cc8..8d739938 100644
--- a/src/application.hpp
+++ b/src/application.hpp
@@ -109,7 +109,7 @@ namespace cru
std::unordered_map<std::type_index, Object*> singleton_map_;
std::list<Object*> singleton_list_; // used for reverse destroy.
#ifdef CRU_DEBUG
- std::unordered_set<std::type_index> singleton_type_set_; // used for dead recursion.
+ std::unordered_set<std::type_index> singleton_type_set_; // used for detecting dead recursion.
#endif
};