From b3bcfb084ef49e9bf73dd8cd9043773ddde609d1 Mon Sep 17 00:00:00 2001 From: James Turner <zakalawe@mac.com> Date: Mon, 8 Oct 2018 16:04:51 +0100 Subject: [PATCH] Fix linux build: missing <cassert> include --- src/GUI/LocalAircraftCache.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GUI/LocalAircraftCache.cxx b/src/GUI/LocalAircraftCache.cxx index 2a01f7f70..9dc929296 100644 --- a/src/GUI/LocalAircraftCache.cxx +++ b/src/GUI/LocalAircraftCache.cxx @@ -20,6 +20,8 @@ #include "LocalAircraftCache.hxx" +#include <cassert> + #include <QDir> #include <QThread> #include <QMutex>