On Windows, only desktop apps actually have the getenv function available to them, so this implementation just always returns not defined.
| 44 | /// available to them, so this implementation just always returns not |
| 45 | /// defined. |
| 46 | boost::optional<std::string> getEnvironmentVariable(std::string const &) { |
| 47 | return boost::optional<std::string>(); |
| 48 | } |
| 49 | #else |
| 50 | /// A real implementation of the functionality. |
| 51 | boost::optional<std::string> |