summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/compiler/preprocessor/SourceLocation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/angle/src/compiler/preprocessor/SourceLocation.h')
-rw-r--r--src/3rdparty/angle/src/compiler/preprocessor/SourceLocation.h12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/3rdparty/angle/src/compiler/preprocessor/SourceLocation.h b/src/3rdparty/angle/src/compiler/preprocessor/SourceLocation.h
index af8a8d5d19..51908a3b4b 100644
--- a/src/3rdparty/angle/src/compiler/preprocessor/SourceLocation.h
+++ b/src/3rdparty/angle/src/compiler/preprocessor/SourceLocation.h
@@ -12,16 +12,8 @@ namespace pp
struct SourceLocation
{
- SourceLocation()
- : file(0),
- line(0)
- {
- }
- SourceLocation(int f, int l)
- : file(f),
- line(l)
- {
- }
+ SourceLocation() : file(0), line(0) {}
+ SourceLocation(int f, int l) : file(f), line(l) {}
bool equals(const SourceLocation &other) const
{