summaryrefslogtreecommitdiff
path: root/src/stl_util.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-07-10 02:05:56 +0200
committerCarl Hetherington <cth@carlh.net>2021-07-10 02:05:56 +0200
commitf9c3bb397743e2556b55f8f6433aec8e731a81e8 (patch)
tree261ef68758b7c208577fa442df431ca2c9d1e9ba /src/stl_util.cc
parent8115d0f378b4c52a2ffca86ef8cfd949e9272d87 (diff)
Use dcp::compose rather than our own.compose
Diffstat (limited to 'src/stl_util.cc')
-rw-r--r--src/stl_util.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stl_util.cc b/src/stl_util.cc
index 16d8a63..f681b19 100644
--- a/src/stl_util.cc
+++ b/src/stl_util.cc
@@ -19,7 +19,7 @@
#include "stl_util.h"
#include "exceptions.h"
-#include "compose.hpp"
+#include <dcp/compose.h>
#include <string>
#include <cmath>
@@ -62,5 +62,5 @@ sub::stl_dfc_to_frame_rate (string s)
return 30;
}
- throw STLError (String::compose ("Unknown disk format code %1 in binary STL file", s));
+ throw STLError (dcp::compose ("Unknown disk format code %1 in binary STL file", s));
}