mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
Fix C4716 (Must return a value) error on Windows MSVC
This commit is contained in:
parent
2fe135d85f
commit
47c60a7037
@ -27,6 +27,7 @@ public:
|
||||
Ogre::String doGet(const void *target) const
|
||||
{
|
||||
assert(false && "Unimplemented");
|
||||
return "";
|
||||
}
|
||||
void doSet(void *target, const Ogre::String &val)
|
||||
{
|
||||
@ -41,6 +42,7 @@ public:
|
||||
Ogre::String doGet(const void *target) const
|
||||
{
|
||||
assert(false && "Unimplemented");
|
||||
return "";
|
||||
}
|
||||
void doSet(void *target, const Ogre::String &val)
|
||||
{
|
||||
@ -563,6 +565,7 @@ public:
|
||||
Ogre::String doGet(const void *target) const
|
||||
{
|
||||
assert(false && "Unimplemented");
|
||||
return "";
|
||||
}
|
||||
void doSet(void *target, const Ogre::String &val)
|
||||
{
|
||||
@ -577,6 +580,7 @@ public:
|
||||
Ogre::String doGet(const void *target) const
|
||||
{
|
||||
assert(false && "Unimplemented");
|
||||
return "";
|
||||
}
|
||||
void doSet(void *target, const Ogre::String &val)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user