summaryrefslogtreecommitdiffstats
path: root/src/uscxml/URL.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/URL.h')
-rw-r--r--src/uscxml/URL.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/URL.h b/src/uscxml/URL.h
index 3acd462..16c29c7 100644
--- a/src/uscxml/URL.h
+++ b/src/uscxml/URL.h
@@ -95,7 +95,7 @@ public:
bool downloadFailed() {
return _hasFailed;
}
- operator Data();
+ operator Data() const;
friend class URLFetcher;
@@ -249,7 +249,7 @@ public:
friend class URLFetcher;
friend std::ostream & operator<<(std::ostream &stream, const URL& p);
- operator Data() {
+ operator Data() const {
return _impl->operator Data();
}