mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
14 lines
179 B
C++
14 lines
179 B
C++
#include "Java.h"
|
|
|
|
NAMESPACE_UPP
|
|
|
|
String Java::GetDelimiter()
|
|
{
|
|
#if defined(PLATFORM_WIN32) || defined(PLATFORM_WIN64)
|
|
return ";";
|
|
#else
|
|
return ":";
|
|
#endif
|
|
}
|
|
|
|
END_UPP_NAMESPACE
|