fixup! Address some compiler warnings.
authorAlex Szpakowski <slime73@gmail.com>
Tue, 11 Oct 2016 19:16:47 +0000 (16:16 -0300)
committerAlex Szpakowski <slime73@gmail.com>
Tue, 11 Oct 2016 19:16:47 +0000 (16:16 -0300)
glslang/Include/InfoSink.h

index ee605ab..0cbd99b 100644 (file)
@@ -74,7 +74,6 @@ public:
     TInfoSinkBase& operator<<(const char* s)           { append(s); return *this; }
     TInfoSinkBase& operator<<(int n)                   { append(String(n)); return *this; }
     TInfoSinkBase& operator<<(unsigned int n)          { append(String(n)); return *this; }
-    TInfoSinkBase& operator<<(long unsigned int n)     { append(String((int)n)); return *this; }
     TInfoSinkBase& operator<<(float n)                 { const int size = 40; char buf[size]; 
                                                          snprintf(buf, size, (fabs(n) > 1e-8 && fabs(n) < 1e8) || n == 0.0f ? "%f" : "%g", n);
                                                          append(buf);