From f9c3bb397743e2556b55f8f6433aec8e731a81e8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sat, 10 Jul 2021 02:05:56 +0200 Subject: Use dcp::compose rather than our own. --- src/stl_binary_tables.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/stl_binary_tables.cc') diff --git a/src/stl_binary_tables.cc b/src/stl_binary_tables.cc index db623bf..ae333e6 100644 --- a/src/stl_binary_tables.cc +++ b/src/stl_binary_tables.cc @@ -20,7 +20,7 @@ #include "stl_binary_tables.h" #include "exceptions.h" #include "sub_assert.h" -#include "compose.hpp" +#include using std::map; using std::string; @@ -39,7 +39,7 @@ file_to_enum (F k, map > m, string name) { typename map >::const_iterator i = m.find (k); if (i == m.end ()) { - throw STLError (String::compose ("Unknown %1 %2 in binary STL file", name, k)); + throw STLError (dcp::compose ("Unknown %1 %2 in binary STL file", name, k)); } return i->second.value; -- cgit v1.2.3