forked from organicmaps/organicmaps
[gcc] Fixed compile error
This commit is contained in:
parent
9018a91189
commit
380bc4d613
1 changed files with 3 additions and 3 deletions
|
@ -1,11 +1,11 @@
|
|||
#include "SRC_FIRST.hpp"
|
||||
#include "base.hpp"
|
||||
#include "assert.hpp"
|
||||
#include "exception.hpp"
|
||||
|
||||
#include "../std/target_os.hpp"
|
||||
#include "../std/iostream.hpp"
|
||||
|
||||
#include <cassert>
|
||||
#include <exception>
|
||||
|
||||
#ifdef OMIM_OS_BADA
|
||||
#include <FBaseSys.h>
|
||||
|
@ -26,7 +26,7 @@ namespace my
|
|||
#ifdef DEBUG
|
||||
assert(false);
|
||||
#else
|
||||
throw std::exception(msg.c_str());
|
||||
MYTHROW(RootException, (msg));
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue