Skip to content

Commit ea02849

Browse files
CzarekCzarek
authored andcommitted
Fixed CEF 1 Linux compilation, Windows header stdint.h was included
on Linux resulting in errors.
1 parent b440e82 commit ea02849

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cefpython/cef1/v8function_handler/v8function_handler.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@
44

55
#pragma once
66

7+
#if defined(_WIN32)
78
#include "../windows/stdint.h"
9+
#endif
10+
811
#include "cefpython_public_api.h"
912

1013
typedef void (*RemovePythonCallback_type)(

0 commit comments

Comments
 (0)