Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3b2f0d5a authored by hhakim's avatar hhakim
Browse files

Simplify the bug fix made by 41312154.

Note: stdlib.h provides u_int32_t etc. and stdint.h uint32_t etc., that's why the symbol wasn't found (no need typedef, just include).
parent b078abf7
No related branches found
No related tags found
No related merge requests found
......@@ -9,15 +9,10 @@
#include <string>
#include <cstring>
#include <typeinfo>
#include <stdint.h>
#if !defined(__MACH__) && !defined(_STDINT_H) // from /usr/include/stdint.h and bits/stdint-uintn.h
typedef unsigned long int uint32_t;
typedef unsigned long long int uint64_t;
#endif
#define CLASS_HANDLE_SIGNATURE 0xFF00F0A5
template<class base> class class_handle
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment