Upgrade WPILib and upgraded compilers to C++17

I haven't touched the CTRE libraries yet, although they may need to be
upgraded as well.

Note that this change makes it so that you need either Ubuntu 18.04 or
later or debian buster or later in order to build the code (you may be
able to build code for the roborio on older operating systems, but
running the tests will not work normally).

Change-Id: I0cfa37fe37f830edde6d305e1f50414c369098e4
diff --git a/y2019/jevois/uart.cc b/y2019/jevois/uart.cc
index 6ebfe30..b1fdcfb 100644
--- a/y2019/jevois/uart.cc
+++ b/y2019/jevois/uart.cc
@@ -55,12 +55,13 @@
   return result;
 }
 
-tl::optional<CameraFrame> UartUnpackToTeensy(gsl::span<const char> encoded_buffer) {
+std::optional<CameraFrame> UartUnpackToTeensy(
+    gsl::span<const char> encoded_buffer) {
   std::array<char, uart_to_teensy_size()> buffer;
   if (static_cast<size_t>(
           CobsDecode<uart_to_teensy_size()>(encoded_buffer, &buffer).size()) !=
       buffer.size()) {
-    return tl::nullopt;
+    return std::nullopt;
   }
 
   CameraFrame message;
@@ -97,7 +98,7 @@
     remaining_input = remaining_input.subspan(sizeof(received_crc));
     AOS_CHECK(remaining_input.empty());
     if (calculated_crc != received_crc) {
-      return tl::nullopt;
+      return std::nullopt;
     }
   }
   return message;
@@ -142,13 +143,13 @@
   return result;
 }
 
-tl::optional<CameraCalibration> UartUnpackToCamera(
+std::optional<CameraCalibration> UartUnpackToCamera(
     gsl::span<const char> encoded_buffer) {
   std::array<char, uart_to_camera_size()> buffer;
   if (static_cast<size_t>(
           CobsDecode<uart_to_camera_size()>(encoded_buffer, &buffer).size()) !=
       buffer.size()) {
-    return tl::nullopt;
+    return std::nullopt;
   }
 
   CameraCalibration message;
@@ -187,7 +188,7 @@
     remaining_input = remaining_input.subspan(sizeof(received_crc));
     AOS_CHECK(remaining_input.empty());
     if (calculated_crc != received_crc) {
-      return tl::nullopt;
+      return std::nullopt;
     }
   }
   return message;