monsdar / CxxProf

CxxProf is a manual instrumented Profiling library for C++. It's goal is to provide easy integration into existing projects with just as little overhead as possible. It should be easy to remove the profiling mechanism during compile and runtime from the code.
GNU General Public License v3.0
58 stars 5 forks source link

Use boost int64 #35

Closed monsdar closed 10 years ago

monsdar commented 10 years ago

We're currently using int64_t from stdint.h which is part of C98, but which is not available in VC90. A more portable solution would be to use boost::int64_t. We need to check how compatible our Thirdparty is with this datatype (serialization, pluma, sqlite, ...)

monsdar commented 10 years ago

Done