From 258276ce9f44d7268bb6406b4c4daa6ba410692a Mon Sep 17 00:00:00 2001 From: Branimir Karadzic Date: Tue, 7 Aug 2012 21:36:26 -0700 Subject: [PATCH] Removed MSVC specific constructor. --- include/bx/commandline.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/bx/commandline.h b/include/bx/commandline.h index 1133528..d8ee2e6 100644 --- a/include/bx/commandline.h +++ b/include/bx/commandline.h @@ -14,12 +14,6 @@ namespace bx class CommandLine { public: - CommandLine() - : m_argc(__argc) - , m_argv(__argv) - { - } - CommandLine(int _argc, char const* const* _argv) : m_argc(_argc) , m_argv(_argv)