summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 75c078ee..8f2740fc 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1077,14 +1077,14 @@ ProgramParams::ProgramParams(int argc, char *argv[])
{
const char* end = strchr(a, ':');
- ::std::string_view s;
+ ::stdx::string_view s;
if( end ) {
- s = ::std::string_view { a, end };
+ s = ::stdx::string_view { a, end };
a = end + 1;
}
else {
end = a + strlen(a);
- s = ::std::string_view { a, end };
+ s = ::stdx::string_view { a, end };
a = end;
}