1Code obtained from 2------------------ 3 4https://re2.googlecode.com/files/re2-20130115.tgz 5 6Version 7------- 8 9re2-20130115.tgz 10 11Changes required to build using stlport on Android as follows (full diff) 12------------------------------------------------------------------------- 13util/util.h: 14 1544,53c44 16< #if defined(ANDROID) 17< 18< #if defined(_STLPORT_VERSION) 19< #include <unordered_set> // using stlport 20< #else 21< #include <tr1/unordered_set> // using gnustl 22< #endif 23< using std::tr1::unordered_set; 24< 25< #elif defined(__GNUC__) && !defined(USE_CXX0X) 26--- 27> #if defined(__GNUC__) && !defined(USE_CXX0X) 28 29