https://github.com/facebook/rocksdb
Raw File
Tip revision: 7fae4515803ff3fc46e9f658265fae8e8279be08 authored by sdong on 31 October 2019, 23:39:02 UTC
Fix two odd assertions.
Tip revision: 7fae451
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