diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-09 17:42:25 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-04-09 17:42:25 +0200 |
commit | 6729e324e85f749d27b303883e6428a05f1eb5f1 (patch) | |
tree | ddb77e7d4d7ce1a5732eefc4fa8f0a170e87226c /editor | |
parent | c6e24343d459bdbff2b86762c98c4de96b2cf0da (diff) |
editor: simplify explicit instantiation syntax
Diffstat (limited to 'editor')
-rw-r--r-- | editor/inspect-types.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/inspect-types.cpp b/editor/inspect-types.cpp index 63335e88..e25ea9d6 100644 --- a/editor/inspect-types.cpp +++ b/editor/inspect-types.cpp @@ -155,7 +155,7 @@ template<typename T> bool inspect_type(T& x) return ret; } -template bool inspect_type<entity>(entity&); -template bool inspect_type<scenery>(scenery&); +template bool inspect_type(entity&); +template bool inspect_type(scenery&); } // namespace floormat::entities |