mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-11-24 06:35:46 +01:00
Rename stdio.h wrapper file to stdio_wrapper.h.
Some projects will get build break because the comipler is confused when searches for the standard stdio.h. Rename the wrapper file to avoid that. renamed: src/common/stdio.h -> src/common/stdio_wrapper.h modified: src/processor/minidump.cc modified: src/processor/dump_context.cc modified: src/processor/logging.cc modified: src/processor/minidump.cc modified: src/processor/minidump_processor.cc modified: src/processor/stackwalk_common.cc modified: src/processor/symbolic_constants_win.cc R=mark@chromium.org, labath@google.com Review URL: https://codereview.chromium.org/1864603002 . Patch from Yunxiao Ma <yxma@google.com>.
This commit is contained in:
parent
6c8f80aa8b
commit
46359276c8
@ -27,8 +27,8 @@
|
||||
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#ifndef GOOGLE_BREAKPAD_COMMON_STDIO_H
|
||||
#define GOOGLE_BREAKPAD_COMMON_STDIO_H
|
||||
#ifndef GOOGLE_BREAKPAD_COMMON_STDIO_WRAPPER_H
|
||||
#define GOOGLE_BREAKPAD_COMMON_STDIO_WRAPPER_H
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
@ -40,4 +40,4 @@ typedef SSIZE_T ssize_t;
|
||||
#endif
|
||||
|
||||
|
||||
#endif // GOOGLE_BREAKPAD_COMMON_STDIO_H
|
||||
#endif // GOOGLE_BREAKPAD_COMMON_STDIO_WRAPPER_H
|
@ -41,7 +41,7 @@
|
||||
#include <unistd.h>
|
||||
#endif // _WIN32
|
||||
|
||||
#include "common/stdio.h"
|
||||
#include "common/stdio_wrapper.h"
|
||||
#include "processor/logging.h"
|
||||
|
||||
namespace google_breakpad {
|
||||
|
@ -40,7 +40,7 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "common/stdio.h"
|
||||
#include "common/stdio_wrapper.h"
|
||||
#include "common/using_std_string.h"
|
||||
#include "processor/logging.h"
|
||||
#include "processor/pathname_stripper.h"
|
||||
|
@ -57,7 +57,7 @@
|
||||
#include "processor/range_map-inl.h"
|
||||
|
||||
#include "common/scoped_ptr.h"
|
||||
#include "common/stdio.h"
|
||||
#include "common/stdio_wrapper.h"
|
||||
#include "google_breakpad/processor/dump_context.h"
|
||||
#include "processor/basic_code_module.h"
|
||||
#include "processor/basic_code_modules.h"
|
||||
|
@ -34,7 +34,7 @@
|
||||
#include <string>
|
||||
|
||||
#include "common/scoped_ptr.h"
|
||||
#include "common/stdio.h"
|
||||
#include "common/stdio_wrapper.h"
|
||||
#include "common/using_std_string.h"
|
||||
#include "google_breakpad/processor/call_stack.h"
|
||||
#include "google_breakpad/processor/minidump.h"
|
||||
|
@ -41,7 +41,7 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "common/stdio.h"
|
||||
#include "common/stdio_wrapper.h"
|
||||
#include "common/using_std_string.h"
|
||||
#include "google_breakpad/processor/call_stack.h"
|
||||
#include "google_breakpad/processor/code_module.h"
|
||||
|
@ -35,7 +35,7 @@
|
||||
|
||||
#include <string>
|
||||
|
||||
#include "common/stdio.h"
|
||||
#include "common/stdio_wrapper.h"
|
||||
#include "google_breakpad/common/breakpad_types.h"
|
||||
#include "google_breakpad/common/minidump_exception_win32.h"
|
||||
#include "processor/symbolic_constants_win.h"
|
||||
|
Loading…
Reference in New Issue
Block a user