Replace aos::SizedArray with absl::InlinedVector
Change-Id: I4dae096c5079afa3135e3a1cb7cb17e2789275e6
Signed-off-by: Tyler Chatow <tchatow@gmail.com>
diff --git a/y2019/jevois/serial.cc b/y2019/jevois/serial.cc
index 5febbb4..cd0bb99 100644
--- a/y2019/jevois/serial.cc
+++ b/y2019/jevois/serial.cc
@@ -1,13 +1,13 @@
#include "y2019/jevois/serial.h"
-#include "aos/logging/logging.h"
-
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <termios.h>
#include <unistd.h>
+#include "aos/logging/logging.h"
+
namespace y2019 {
namespace jevois {
@@ -33,7 +33,7 @@
| IGNCR // ignore CR
| ICRNL // translate CR to newline on input
| IXON // disable XON/XOFF flow control on output
- );
+ );
// disable implementation-defined output processing
options.c_oflag &= ~OPOST;
@@ -42,7 +42,7 @@
| ICANON // disable cannonical mode
| ISIG // do not signal for INTR, QUIT, SUSP etc
| IEXTEN // disable platform dependent i/p processing
- );
+ );
cfsetispeed(&options, B115200);
cfsetospeed(&options, B115200);