summaryrefslogtreecommitdiffstats
path: root/src/uscxml/URL.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-08-25 10:41:58 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-08-25 10:41:58 (GMT)
commit26183abd9acd44a0382e55cc985795ee7c526aed (patch)
treea9d9289397b65892dbad037d02460cf2d04597fb /src/uscxml/URL.h
parentbd45c688b3d3aad5d62b85457ce943eaadf989ae (diff)
downloaduscxml-26183abd9acd44a0382e55cc985795ee7c526aed.zip
uscxml-26183abd9acd44a0382e55cc985795ee7c526aed.tar.gz
uscxml-26183abd9acd44a0382e55cc985795ee7c526aed.tar.bz2
Updated W3C tests and bug-fixes
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();
}