Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

[x86/Linux][SOS] Don't include utilcode.h in gcdump(x86).cpp #8475

Merged
merged 1 commit into from
Dec 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/gcdump/gcdump.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
* to the standard code-manager spec.
*/

#ifndef FEATURE_PAL
#include "utilcode.h" // For _ASSERTE()
#endif //!FEATURE_PAL
#include "gcdump.h"

/*****************************************************************************/
Expand Down
2 changes: 2 additions & 0 deletions src/gcdump/i386/gcdumpx86.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
#ifdef _TARGET_X86_
/*****************************************************************************/

#ifndef FEATURE_PAL
#include "utilcode.h" // For _ASSERTE()
#endif //!FEATURE_PAL
#include "gcdump.h"


Expand Down