summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMightyjo <mightyjo@gmail.com>2021-01-30 13:38:49 -0500
committerJoseph Langley <mightyjo@gmail.com>2021-06-09 21:46:00 -0400
commit379af7681d10ae78f4f334ec555d1f9e64123361 (patch)
treee9f1c1f453f44496fb8e68cfd903538a372574a3
parentb4162d3653d07a55e05891d986da2a1a92386331 (diff)
downloadflex-git-379af7681d10ae78f4f334ec555d1f9e64123361.tar.gz
Don't use C++ auto, it angers TravisCI.
-rw-r--r--tests/state_buf.direct.lll2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/state_buf.direct.lll b/tests/state_buf.direct.lll
index fea9885..a0085d6 100644
--- a/tests/state_buf.direct.lll
+++ b/tests/state_buf.direct.lll
@@ -89,7 +89,7 @@ int main(int argc, char** argv)
exit(-1);
}
- auto stm = readFile( argv[1] );
+ std::vector<char> stm = readFile( argv[1] );
test_scan_buffer(stm.data(), stm.size());
testlex();