https://github.com/facebook/rocksdb
Raw File
Tip revision: 678d3a1633e6b86a00d98af9d860791e40b3db8c authored by Mayank Agarwal on 06 August 2013, 21:43:16 UTC
Updating readme to 2.1
Tip revision: 678d3a1
build_version.h
/*version.h*/
#ifndef VERSION_H_
#define VERSION_H_

// these variables tell us about the git config and time
extern const char* leveldb_build_git_sha;

// these variables tell us when the compilation occured
extern const char* leveldb_build_compile_time;
extern const char* leveldb_build_compile_date;


#endif /* VERSION_H_ */
back to top