]> git.tdb.fi Git - libs/gl.git/blobdiff - source/glsl/glsl_error.h
Remove unnecessary std:: qualifiers
[libs/gl.git] / source / glsl / glsl_error.h
index 46854744699c183f8df2e88efd019b5f01e68236..0b4b4b02d2ddff4641f41b5c59ce2df6c1d110f7 100644 (file)
@@ -38,6 +38,13 @@ public:
        virtual ~parse_error() throw() { }
 };
 
+class internal_error: public std::logic_error
+{
+public:
+       internal_error(const std::string &w): logic_error(w) { }
+       virtual ~internal_error() throw() { }
+};
+
 struct Diagnostic
 {
        enum Severity
@@ -50,9 +57,12 @@ struct Diagnostic
        Severity severity;
        int source;
        unsigned line;
+       int provoking_source;
+       unsigned provoking_line;
        std::string message;
 
-       Diagnostic(): severity(INFO), source(-2), line(0) { }
+       Diagnostic();
+       Diagnostic(Severity, int, unsigned, const std::string &);
 };
 
 } // namespace SL