https://github.com/facebook/rocksdb
Raw File
Tip revision: a34ec68f263d8b0d1d6631427692764d75886479 authored by Mayank Agarwal on 10 May 2013, 00:33:27 UTC
Adding Sanity checks in Get and Iterator->value for ttl
Tip revision: a34ec68
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