Skip to content

Commit

Permalink
Change absolute include to relative
Browse files Browse the repository at this point in the history
in z/env/OMRCPU.cpp, compiler/z/env/OMRCPU.hpp was being included.
This resulted in linter issues, because self() did not produce a
complete type. This commit replaces the absolute include path with a
relative include path, to allow the I-Path magic to do its thing.

Signed-off-by: Irwin D'Souza <[email protected]>
  • Loading branch information
Irwin D'Souza committed May 13, 2019
1 parent afbd14f commit 7c6ddd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/z/env/OMRCPU.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#pragma csect(STATIC,"OMRZCPUBase#S")
#pragma csect(TEST,"OMRZCPUBase#T")

#include "compiler/z/env/OMRCPU.hpp"
#include "env/CPU.hpp"

const char*
OMR::Z::CPU::getProcessorName(int32_t machineId)
Expand Down

0 comments on commit 7c6ddd3

Please sign in to comment.