Removed MSVC specific constructor.

This commit is contained in:
Branimir Karadzic
2012-08-07 21:36:26 -07:00
parent 2665565f3f
commit 258276ce9f

View File

@@ -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)