forked from organicmaps/organicmaps
Fix multicharacter literals
This commit is contained in:
parent
6f970e4089
commit
72f4090f28
2 changed files with 10 additions and 7 deletions
|
@ -4,19 +4,20 @@
|
|||
#include "../std/map.hpp"
|
||||
|
||||
#include "../std/iostream.hpp"
|
||||
#include "../std/exception.hpp"
|
||||
|
||||
struct XMLElement
|
||||
{
|
||||
enum ETag
|
||||
{
|
||||
ET_UNKNOWN = 0,
|
||||
ET_OSM = 'so',
|
||||
ET_NODE = 'on',
|
||||
ET_WAY = 'aw',
|
||||
ET_RELATION = 'er',
|
||||
ET_TAG = 'at',
|
||||
ET_ND = 'dn',
|
||||
ET_MEMBER = 'em'
|
||||
ET_OSM = 0x736F, // "os"
|
||||
ET_NODE = 0x6F6E, // "no"
|
||||
ET_WAY = 0x6177, // "wa"
|
||||
ET_RELATION = 0x6572, // "re"
|
||||
ET_TAG = 0x6174, // "ta"
|
||||
ET_ND = 0x646E, // "nd"
|
||||
ET_MEMBER = 0x656D // "me"
|
||||
};
|
||||
|
||||
ETag tagKey = ET_UNKNOWN;
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
|
||||
#include <exception>
|
||||
using std::exception;
|
||||
using std::logic_error;
|
||||
using std::runtime_error;
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
|
|
Loading…
Add table
Reference in a new issue