| Index: courgette/patcher_x86_32.h
|
| diff --git a/courgette/patcher_x86_32.h b/courgette/patcher_x86_32.h
|
| index e984579f040e04ce556e8689a10de40cf866b52a..3461d79586295eb07bc126ff4a6fb36c6e54537b 100644
|
| --- a/courgette/patcher_x86_32.h
|
| +++ b/courgette/patcher_x86_32.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef COURGETTE_WIN32_X86_PATCHER_H_
|
| #define COURGETTE_WIN32_X86_PATCHER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| +#include "base/macros.h"
|
| #include "courgette/ensemble.h"
|
|
|
| namespace courgette {
|
| @@ -90,8 +93,8 @@ class PatcherX86_32 : public TransformationPatcher {
|
| private:
|
| Region ensemble_region_;
|
|
|
| - uint32 base_offset_;
|
| - uint32 base_length_;
|
| + uint32_t base_offset_;
|
| + uint32_t base_length_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(PatcherX86_32);
|
| };
|
|
|