diff options
| author | Richard Lin | 2016-11-29 16:37:13 -0800 |
|---|---|---|
| committer | GitHub | 2016-11-29 16:37:13 -0800 |
| commit | 7680363982b02f53e9f76f5d5e242e44f17da6f7 (patch) | |
| tree | 1b68e829fa8503440fcc564ea8d26207b7e2fb88 /src/main/scala/chisel3/testers | |
| parent | edb19a0559686a471141c74438f677c1e217a298 (diff) | |
Add feature warnings to build, fix feature warnings, fix some documentation (#387)
Diffstat (limited to 'src/main/scala/chisel3/testers')
| -rw-r--r-- | src/main/scala/chisel3/testers/TesterDriver.scala | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/scala/chisel3/testers/TesterDriver.scala b/src/main/scala/chisel3/testers/TesterDriver.scala index 76b9a2e9..83f3c796 100644 --- a/src/main/scala/chisel3/testers/TesterDriver.scala +++ b/src/main/scala/chisel3/testers/TesterDriver.scala @@ -14,7 +14,7 @@ object TesterDriver extends BackendCompilationUtilities { throw new FileNotFoundException(s"Resource '$name'") } val out = new FileOutputStream(file) - Iterator.continually(in.read).takeWhile(-1 !=).foreach(out.write) + Iterator.continually(in.read).takeWhile(-1 != _).foreach(out.write) out.close() } |
