summaryrefslogtreecommitdiff
path: root/src/stl_binary_tables.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/stl_binary_tables.cc')
-rw-r--r--src/stl_binary_tables.cc4
1 files changed, 2 insertions, 2 deletions
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 <dcp/compose.h>
using std::map;
using std::string;
@@ -39,7 +39,7 @@ file_to_enum (F k, map<F, STLBinaryCode<E> > m, string name)
{
typename map<F, STLBinaryCode<E> >::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;