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