mirror of
https://github.com/openwrt/packages.git
synced 2026-04-15 10:51:55 +00:00
The headers apparently changed in 1.90 from 1.89 and the definition for BOOST_STATIC_ASSERT() needs to be brought in explicitly from <boost/static_assert.hpp> which wasn't previously the case. Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
11 lines
244 B
Diff
11 lines
244 B
Diff
--- a/src/lib/log/logger_level_impl.cc
|
|
+++ b/src/lib/log/logger_level_impl.cc
|
|
@@ -10,6 +10,7 @@
|
|
#include <string.h>
|
|
#include <iostream>
|
|
#include <boost/lexical_cast.hpp>
|
|
+#include <boost/static_assert.hpp>
|
|
|
|
#include <log4cplus/logger.h>
|
|
|