- added MAC OS specific preprocessor directive to OS specific file path separator selection
@@ -3,7 +3,7 @@
* Company: Lynar Studios
* E-Mail: webmaster@lynarstudios.com
* Created: 2020-08-15
- * Changed: 2020-08-15
+ * Changed: 2020-08-16
*
* */
@@ -32,6 +32,9 @@ namespace ls_std {
#ifdef unix
separator = ls_std::FilePathSeparator::getLinuxFilePathSeparator();
#endif
+ #ifdef __APLLE__
+ separator = ls_std::FilePathSeparator::getLinuxFilePathSeparator();
+ #endif
return separator;
}