From 61084a3f4e54555d741302c0f8e0d26309033e47 Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 12 Jul 2018 14:24:40 +0200 Subject: [PATCH] pgraph: work around C++11 bug in something or other (see #355) --- panda/src/pgraph/cacheStats.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pgraph/cacheStats.h b/panda/src/pgraph/cacheStats.h index 5658a0472f..daeeb5340d 100644 --- a/panda/src/pgraph/cacheStats.h +++ b/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;