Browse Source

pgraph: Add constexpr to CacheStats constructor

rdb 3 years ago
parent
commit
ba4173b32c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/pgraph/cacheStats.h

+ 1 - 1
panda/src/pgraph/cacheStats.h

@@ -25,7 +25,7 @@
  */
 class EXPCL_PANDA_PGRAPH CacheStats {
 public:
-  CacheStats() = default;
+  constexpr CacheStats() = default;
   void init();
   void reset(double now);
   void write(std::ostream &out, const char *name) const;