core: device_memory: Remove incorrect usage of constexpr.
This commit is contained in:
parent
6f3266e98b
commit
92caa003a8
|
@ -28,12 +28,16 @@ public:
|
||||||
~DeviceMemory();
|
~DeviceMemory();
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
constexpr PAddr GetPhysicalAddr(T* ptr) {
|
PAddr GetPhysicalAddr(const T* ptr) const {
|
||||||
return (reinterpret_cast<uintptr_t>(ptr) - reinterpret_cast<uintptr_t>(buffer.data())) +
|
return (reinterpret_cast<uintptr_t>(ptr) - reinterpret_cast<uintptr_t>(buffer.data())) +
|
||||||
DramMemoryMap::Base;
|
DramMemoryMap::Base;
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr u8* GetPointer(PAddr addr) {
|
u8* GetPointer(PAddr addr) {
|
||||||
|
return buffer.data() + (addr - DramMemoryMap::Base);
|
||||||
|
}
|
||||||
|
|
||||||
|
const u8* GetPointer(PAddr addr) const {
|
||||||
return buffer.data() + (addr - DramMemoryMap::Base);
|
return buffer.data() + (addr - DramMemoryMap::Base);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in New Issue