about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/nix/path-info.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix/path-info.cc b/src/nix/path-info.cc
index 916ed360e62d..fbe5f91698f1 100644
--- a/src/nix/path-info.cc
+++ b/src/nix/path-info.cc
@@ -70,9 +70,9 @@ struct CmdPathInfo : StorePathsCommand, MixJSON
             return;
         }
 
-        static constexpr std::array<char, 9> idents = {
+        static const std::array<char, 9> idents{{
             ' ', 'K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'
-        };
+        }};
         size_t power = 0;
         double res = value;
         while (res > 1024 && power < idents.size()) {