summaryrefslogtreecommitdiff
path: root/src/exceptions.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/exceptions.cc
parent8115d0f378b4c52a2ffca86ef8cfd949e9272d87 (diff)
Use dcp::compose rather than our own.compose
Diffstat (limited to 'src/exceptions.cc')
-rw-r--r--src/exceptions.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exceptions.cc b/src/exceptions.cc
index 72198fc..e6559db 100644
--- a/src/exceptions.cc
+++ b/src/exceptions.cc
@@ -17,15 +17,15 @@
*/
-#include "compose.hpp"
#include "exceptions.h"
+#include <dcp/compose.h>
using std::list;
using std::string;
using namespace sub;
ProgrammingError::ProgrammingError (string file, int line)
- : runtime_error (String::compose ("Programming error at %1:%2", file, line))
+ : runtime_error (dcp::compose ("Programming error at %1:%2", file, line))
{
}