Fix const cast error for MSVC2015 build.
authorAidan Dodds <aidan@codeplay.com>
Thu, 28 Jan 2016 13:05:21 +0000 (13:05 +0000)
committerAidan Dodds <aidan@codeplay.com>
Thu, 28 Jan 2016 13:05:21 +0000 (13:05 +0000)
commitbdc52ef38b677543dd3b4279ec82c188632e07e2
treedc74596ff82554152146e1e30f72907fa0134ea4
parent26311f00e86085dd6bd3ed0c10cfcbb6f5f31271
Fix const cast error for MSVC2015 build.

The Visual Studio 2015 build was failing with the following error:
error C2440: 'initializing': cannot convert from 'const char [12]' to 'char *'

This should fix the problem by initializing a non const char array, instead of taking a pointer to const static data.

llvm-svn: 259042
lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp