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/y2018/vision/image_streamer.cc b/y2018/vision/image_streamer.cc
index 4050260..b0c1f86 100644
--- a/y2018/vision/image_streamer.cc
+++ b/y2018/vision/image_streamer.cc
@@ -310,7 +310,7 @@
   ::std::unique_ptr<CameraStream> camera1;
   ::std::unique_ptr<CameraStream> camera0(new CameraStream(
       params0, "/dev/video0", &tcp_server_, true,
-      [&camera0, &camera1, &status_socket, &vision_status]() {
+      [&camera0, &status_socket, &vision_status]() {
         vision_status.set_low_frame_count(vision_status.low_frame_count() + 1);
         AOS_LOG(INFO, "Got a frame cam0\n");
         if (camera0->active()) {
@@ -322,7 +322,7 @@
         // params,
         // "/dev/v4l/by-path/platform-tegra-xhci-usb-0:3.1:1.0-video-index0",
         params1, "/dev/video1", &tcp_server_, false,
-        [&camera0, &camera1, &status_socket, &vision_status]() {
+        [&camera1, &status_socket, &vision_status]() {
           vision_status.set_high_frame_count(vision_status.high_frame_count() +
                                              1);
           AOS_LOG(INFO, "Got a frame cam1\n");