summaryrefslogtreecommitdiffstats
path: root/src/uscxml/URL.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/URL.cpp')
-rw-r--r--src/uscxml/URL.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/URL.cpp b/src/uscxml/URL.cpp
index 67a6e37..8b02d53 100644
--- a/src/uscxml/URL.cpp
+++ b/src/uscxml/URL.cpp
@@ -61,7 +61,7 @@ void URL::dump() {
std::cout << "[path]" << path();
std::cout << "[file]" << file() << std::endl;
std::cout << "[segmts " << pathComponents().size() << "]: ";
- for (int i = 0; i < pathComponents().size(); i++) {
+ for (size_t i = 0; i < pathComponents().size(); i++) {
std::cout << pathComponents()[i] << ", ";
}
std::cout << std::endl << std::endl;