Index: src/Common/utility.h
===================================================================
--- src/Common/utility.h	(revision 298581c262ddd363b651f744e19dacb75b96edbc)
+++ src/Common/utility.h	(revision 61820391094580921cc6c45e1f9ac6b5d47d7e73)
@@ -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
 
