summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index 74cb2a4..0432f34 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -299,7 +299,7 @@ public:
class DataModel {
public:
DataModel() : _impl() {}
- DataModel(boost::shared_ptr<DataModelImpl> const impl) : _impl(impl) { }
+ DataModel(const boost::shared_ptr<DataModelImpl> impl) : _impl(impl) { }
DataModel(const DataModel& other) : _impl(other._impl) { }
virtual ~DataModel() {};