From 379af7681d10ae78f4f334ec555d1f9e64123361 Mon Sep 17 00:00:00 2001 From: Mightyjo Date: Sat, 30 Jan 2021 13:38:49 -0500 Subject: Don't use C++ auto, it angers TravisCI. --- tests/state_buf.direct.lll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 stm = readFile( argv[1] ); test_scan_buffer(stm.data(), stm.size()); testlex(); -- cgit v1.2.1