Index: src/Common/utility.h
===================================================================
--- src/Common/utility.h	(revision f57668a590aa4cede590bc26725f85c38abb833a)
+++ src/Common/utility.h	(revision edbdbe65648d9874b8a2388ecb862f7a06e38f4a)
@@ -322,5 +322,5 @@
 	std::string filename;
 
-    /// Create a new unset CodeLocation.
+	/// Create a new unset CodeLocation.
 	CodeLocation()
 		: linenumber( -1 )
@@ -328,5 +328,5 @@
 	{}
 
-    /// Create a new CodeLocation with the given values.
+	/// Create a new CodeLocation with the given values.
 	CodeLocation( const char* filename, int lineno )
 		: linenumber( lineno )
@@ -334,11 +334,11 @@
 	{}
 
-    bool isSet () const {
-        return -1 != linenumber;
-    }
-
-    bool isUnset () const {
-        return !isSet();
-    }
+	bool isSet () const {
+		return -1 != linenumber;
+	}
+
+	bool isUnset () const {
+		return !isSet();
+	}
 
 	void unset () {
@@ -353,4 +353,5 @@
 	return location.isSet() ? location.filename + ":" + std::to_string(location.linenumber) + " " : "";
 }
+
 #endif // _UTILITY_H
 
