aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2025-03-21 17:31:03 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2025-03-21 17:31:03 +0100
commitd57e0e9635a18f226394b9f41feef1658a2e051c (patch)
treecf4e47d172dfd38f898038eadccb30b919a26b4d
parent3b20f5b2f5d7f2a9be828f31da73468cf952b293 (diff)
downloaddabmux-d57e0e9635a18f226394b9f41feef1658a2e051c.tar.gz
dabmux-d57e0e9635a18f226394b9f41feef1658a2e051c.tar.bz2
dabmux-d57e0e9635a18f226394b9f41feef1658a2e051c.zip
Fix some includes in Json.{h,cpp}
-rw-r--r--lib/Json.cpp4
-rw-r--r--lib/Json.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/Json.cpp b/lib/Json.cpp
index 361a149..ee33671 100644
--- a/lib/Json.cpp
+++ b/lib/Json.cpp
@@ -3,7 +3,7 @@
Her Majesty the Queen in Right of Canada (Communications Research
Center Canada)
- Copyright (C) 2023
+ Copyright (C) 2025
Matthias P. Braendli, matthias.braendli@mpb.li
http://www.opendigitalradio.org
@@ -27,7 +27,7 @@
#include <sstream>
#include <iomanip>
#include <string>
-#include <algorithm>
+#include <stdexcept>
#include "Json.h"
diff --git a/lib/Json.h b/lib/Json.h
index b082f92..0168583 100644
--- a/lib/Json.h
+++ b/lib/Json.h
@@ -3,7 +3,7 @@
Her Majesty the Queen in Right of Canada (Communications Research
Center Canada)
- Copyright (C) 2023
+ Copyright (C) 2025
Matthias P. Braendli, matthias.braendli@mpb.li
http://www.opendigitalradio.org
@@ -34,10 +34,10 @@
#include <vector>
#include <memory>
#include <optional>
-#include <stdexcept>
#include <string>
#include <unordered_map>
#include <variant>
+#include <cstdint>
namespace json {