macOS support warning

This commit is contained in:
badaix 2016-10-17 09:05:51 +02:00
parent 7715f3bbd3
commit eb021d84c2
3 changed files with 9 additions and 10 deletions

View file

@ -45,6 +45,9 @@ using namespace popl;
int main(int argc, char* argv[])
{
#ifdef MACOS
#pragma message "Warning: the macOS support is experimental and might not be maintained"
#endif
try
{
StreamServerSettings settings;
@ -181,7 +184,3 @@ int main(int argc, char* argv[])
return 0;
}