]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gdbsupport/pathstuff.h
Remove gdb_static_assert
[thirdparty/binutils-gdb.git] / gdbsupport / pathstuff.h
index b22a521e68d04ea7a80960ed3b35e91029d5710b..4a0a19ea2985f47245a06fbb4e6032b9488203bd 100644 (file)
@@ -76,7 +76,7 @@ std::string
 path_join (Args... paths)
 {
   /* It doesn't make sense to join less than two paths.  */
-  gdb_static_assert (sizeof... (Args) >= 2);
+  static_assert (sizeof... (Args) >= 2);
 
   std::array<const char *, sizeof... (Args)> path_array
     { paths... };