Browse Source

pgraph: work around C++11 bug in something or other (see #355)

rdb 7 years ago
parent
commit
61084a3f4e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/pgraph/cacheStats.h

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

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