diff options
author | William D. Jones <thor0505@comcast.net> | 2018-11-03 13:00:39 -0400 |
---|---|---|
committer | William D. Jones <thor0505@comcast.net> | 2018-11-03 13:11:01 -0400 |
commit | 553c61193605e0ff0fde5aa478e32e5b9c5f3518 (patch) | |
tree | c6194b14f1995a6e6a0f2b7ddbbae2d4a5e9f820 | |
parent | 158212417f5d8739231a64b60a880e25b418556c (diff) | |
download | nextpnr-553c61193605e0ff0fde5aa478e32e5b9c5f3518.tar.gz nextpnr-553c61193605e0ff0fde5aa478e32e5b9c5f3518.tar.bz2 nextpnr-553c61193605e0ff0fde5aa478e32e5b9c5f3518.zip |
Rename io.{h,cc} to pio.{h,cc} to avoid naming conflict with Windows-provided io.h.
Signed-off-by: William D. Jones <thor0505@comcast.net>
-rw-r--r-- | ecp5/bitstream.cc | 2 | ||||
-rw-r--r-- | ecp5/pio.cc (renamed from ecp5/io.cc) | 2 | ||||
-rw-r--r-- | ecp5/pio.h (renamed from ecp5/io.h) | 0 |
3 files changed, 2 insertions, 2 deletions
diff --git a/ecp5/bitstream.cc b/ecp5/bitstream.cc index 95256732..1c150ae2 100644 --- a/ecp5/bitstream.cc +++ b/ecp5/bitstream.cc @@ -26,7 +26,7 @@ #include <streambuf> #include "config.h" -#include "io.h" +#include "pio.h" #include "log.h" #include "util.h" diff --git a/ecp5/io.cc b/ecp5/pio.cc index 908caaba..65dcd704 100644 --- a/ecp5/io.cc +++ b/ecp5/pio.cc @@ -17,7 +17,7 @@ * */ -#include "io.h" +#include "pio.h" NEXTPNR_NAMESPACE_BEGIN |