diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 5484d2b838..9800df88b1 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -752,10 +752,7 @@ bool setupEssentials(int& argc, char** argv, const QCommandLineParser* parser, b reportAndQuit("--protocolVersion", [&](FILE* fp) { auto version = protocolVersionsSignatureBase64(); fputs(version.toLatin1().data(), fp); - }); // This doesn't seem to work. - /*reportAndQuit("--version", [&](FILE* fp) { - fputs(BuildInfo::VERSION.toLatin1().data(), fp); - });*/ + }); const int listenPort = parser->isSet("listenPort") ? parser->value("listenPort").toInt() : INVALID_PORT; diff --git a/interface/src/main.cpp b/interface/src/main.cpp index e750ec5d98..c858d4b48a 100644 --- a/interface/src/main.cpp +++ b/interface/src/main.cpp @@ -216,7 +216,7 @@ int main(int argc, const char* argv[]) { "clockSkew", "Forces client instance's clock to skew for demonstration purposes.", "value" - ); + ); // This should probably be removed. QCommandLineOption testScriptOption( "testScript", "Undocumented. Accepts parameter as U.R.L.",