]> git.sesse.net Git - cubemap/blobdiff - input.cpp
Remove std:: from all code in .cpp files, for consistency.
[cubemap] / input.cpp
index 102207f955deabdc8861ffbd9798fcefd1542e29..bbd2c3ae829d64c20a72576b8d5eea62331103af 100644 (file)
--- a/input.cpp
+++ b/input.cpp
@@ -63,7 +63,6 @@ bool parse_url(const string &url, string *protocol, string *user, string *host,
        if (split == rest.size()) {
                // http://foo
                split_user_host(rest, user, host);
-               fprintf(stderr, "ooo user='%s' host='%s'\n", user->c_str(), host->c_str());
                *port = *protocol;
                *path = "/";
                return true;
@@ -95,7 +94,7 @@ bool parse_url(const string &url, string *protocol, string *user, string *host,
        return true;
 }
 
-Input *create_input(const std::string &url)
+Input *create_input(const string &url)
 {
        string protocol, user, host, port, path;
        if (!parse_url(url, &protocol, &user, &host, &port, &path)) {