mirror of
https://github.com/mhx/dwarfs.git
synced 2025-08-03 17:56:12 -04:00
8 lines
195 B
C++
8 lines
195 B
C++
#include <iostream>
|
|
#include <parallel_hashmap/phmap_config.h>
|
|
|
|
int main() {
|
|
std::cout << PHMAP_VERSION_MAJOR << '.' << PHMAP_VERSION_MINOR << '.' << PHMAP_VERSION_PATCH << '\n';
|
|
return 0;
|
|
}
|