mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 15:01:16 +01:00
DSPSpy: Fix build failures
- Remove dangling #endif include guard from #pragma once conversion - Enable C++0x support for nullptr support
This commit is contained in:
parent
89b7f1057f
commit
bde072e0a9
@ -33,7 +33,7 @@ INCLUDES := include ../Core/Common .
|
|||||||
#---------------------------------------------------------------------------------
|
#---------------------------------------------------------------------------------
|
||||||
|
|
||||||
CFLAGS = -save-temps -O2 -Wall --no-strict-aliasing $(MACHDEP) $(INCLUDE)
|
CFLAGS = -save-temps -O2 -Wall --no-strict-aliasing $(MACHDEP) $(INCLUDE)
|
||||||
CXXFLAGS = $(CFLAGS)
|
CXXFLAGS = -std=c++0x $(CFLAGS)
|
||||||
|
|
||||||
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
||||||
|
|
||||||
|
@ -32,5 +32,3 @@ public:
|
|||||||
// the implementation does nothing but calling the virtual methods above.
|
// the implementation does nothing but calling the virtual methods above.
|
||||||
void SendTask(void *addr, u16 iram_addr, u16 len, u16 start);
|
void SendTask(void *addr, u16 iram_addr, u16 len, u16 start);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // _DSP_INTERFACE_H
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user