You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

version.cpp 301 B

2 years ago
1234567891011121314151617181920
  1. #include "geo/version.h"
  2. namespace ns
  3. {
  4. namespace util
  5. {
  6. std::string version()
  7. {
  8. static const std::string VersionString = "UNKNOWN";
  9. #if defined(DEBUG)
  10. return VersionString + " Debug";
  11. #else /* !DEBUG */
  12. return VersionString;
  13. #endif /* DEBUG */
  14. }
  15. } // namespace util
  16. } // namespace ns