diff --git a/.clang-format b/.clang-format
index e077ae2639efbd86dd1d7b49d6ed35f96ba7f5e5..a0f9288611ef971d55b7cae7b1220524add11df9 100644
--- a/.clang-format
+++ b/.clang-format
@@ -147,7 +147,7 @@ SpacesInContainerLiterals: true
 SpacesInCStyleCastParentheses: false
 SpacesInParentheses: false
 SpacesInSquareBrackets: false
-Standard:        Auto
+Standard:        c++11
 StatementMacros:
   - Q_UNUSED
   - QT_REQUIRE_VERSION
diff --git a/idg-lib/src/common/ProxyInfo.h b/idg-lib/src/common/ProxyInfo.h
index 2f44c91b177ebcb7af0bc8af12ba684bf7ffc10a..45dc3b6cb2b6fa5025e2090f050cd323de8cff37 100644
--- a/idg-lib/src/common/ProxyInfo.h
+++ b/idg-lib/src/common/ProxyInfo.h
@@ -58,7 +58,7 @@ class ProxyInfo {
  private:
   std::string path_to_src;  // path where src code that is put into libs lives
   std::string path_to_lib;  // path where to create the libs
-  std::map<std::string, std::vector<std::string> >
+  std::map<std::string, std::vector<std::string>>
       libs;  // maps library name to list of files
   bool delete_libs;
 };  // end class ProxyInfo