diff options
author | 2017-02-07 20:07:56 +0100 | |
---|---|---|
committer | 2017-02-10 21:52:09 +0100 | |
commit | ab17457707eaab1ec5d3f4719704ccd25a235651 (patch) | |
tree | 42e034a901f16f281a65049a64eb72f76e3ba55f /src/lib/netlist/plib/putil.cpp | |
parent | 041f7bb54952193083f5bbf507c1585fcaf21504 (diff) |
Make sure netlist includes are not found directly on include path.
Instead, they have to be prefixed by "netlist/". Removed unneeded link
librariers for nltool and nlwav along the way. (nw)
Diffstat (limited to 'src/lib/netlist/plib/putil.cpp')
-rw-r--r-- | src/lib/netlist/plib/putil.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/netlist/plib/putil.cpp b/src/lib/netlist/plib/putil.cpp index 6a24e8c4012..f4251e161fa 100644 --- a/src/lib/netlist/plib/putil.cpp +++ b/src/lib/netlist/plib/putil.cpp @@ -6,9 +6,9 @@ #include <algorithm> #include <initializer_list> -#include "plib/putil.h" -#include "plib/ptypes.h" -#include "plib/plists.h" +#include "putil.h" +#include "ptypes.h" +#include "plists.h" namespace plib { |