We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9325ba0 commit c44f885Copy full SHA for c44f885
src/engine/renderer/gl_shader.cpp
@@ -28,7 +28,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
28
// We currently write GLBinaryHeader to a file and memcpy all over it.
29
// Make sure it's a pod, so we don't put a std::string in it or something
30
// and try to memcpy over that or binary write an std::string to a file.
31
-static_assert(std::is_pod<GLBinaryHeader>::value, "Value must be a pod while code in this cpp file reads and writes this object to file as binary.");
+static_assert(IsPod<GLBinaryHeader>, "Value must be a pod while code in this cpp file reads and writes this object to file as binary.");
32
33
// set via command line args only since this allows arbitrary code execution
34
static Cvar::Cvar<std::string> shaderpath(
0 commit comments