forked from boostorg/regex
Change __BORLANDC__ to BOOST_BORLANDC, which is defined in Boost config for the Embarcadero non-clang-based compilers.
This commit is contained in:
@ -17,7 +17,7 @@
|
||||
* using a C++ Builder closure as a callback.
|
||||
*/
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
#ifdef __BORLANDC__ && !defined(__clang__)
|
||||
|
||||
#include <boost/regex.hpp>
|
||||
#include <string>
|
||||
@ -140,7 +140,7 @@ int main(int argc, const char** argv)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#else // __BORLANDC__
|
||||
#else // __BORLANDC__ && !defined(__clang__)
|
||||
|
||||
int main()
|
||||
{
|
||||
|
Reference in New Issue
Block a user