Updated Visual Studio for recent class removal.

Removed constexpr, since VC++ 2013 doesn't support it yet.

git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@3076 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
stephena 2014-11-16 16:50:46 +00:00
parent 29fe39dd99
commit f12732042a
3 changed files with 1 additions and 5 deletions

View File

@ -343,7 +343,7 @@ class M6502 : public Serializable
uInt16 myDataAddressForPoke;
/// Indicates the number of system cycles per processor cycle
static constexpr uInt32 SYSTEM_CYCLES_PER_CPU = 1;
static const uInt32 SYSTEM_CYCLES_PER_CPU = 1;
#ifdef DEBUGGER_SUPPORT
Int32 evalCondBreaks() {

View File

@ -377,7 +377,6 @@
<ClCompile Include="..\debugger\gui\DebuggerDialog.cxx" />
<ClCompile Include="..\debugger\DebuggerParser.cxx" />
<ClCompile Include="..\debugger\DiStella.cxx" />
<ClCompile Include="..\debugger\PackedBitArray.cxx" />
<ClCompile Include="..\debugger\gui\PromptWidget.cxx" />
<ClCompile Include="..\debugger\gui\RamWidget.cxx" />
<ClCompile Include="..\debugger\RiotDebug.cxx" />

View File

@ -297,9 +297,6 @@
<ClCompile Include="..\debugger\DiStella.cxx">
<Filter>Source Files\debugger</Filter>
</ClCompile>
<ClCompile Include="..\debugger\PackedBitArray.cxx">
<Filter>Source Files\debugger</Filter>
</ClCompile>
<ClCompile Include="..\debugger\gui\PromptWidget.cxx">
<Filter>Source Files\debugger</Filter>
</ClCompile>