opnsense-ports/games/netpanzer/files/patch-src_Lib_optionmm_command_line.hpp
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01:00

17 lines
495 B
C++

--- src/Lib/optionmm/command_line.hpp.orig 2013-09-27 10:31:25.000000000 +0200
+++ src/Lib/optionmm/command_line.hpp 2013-09-27 10:38:10.000000000 +0200
@@ -212,7 +212,13 @@
{
x = !x;
}
-#if defined(__GNUC__) && __GNUC__ >= 2
+
+#if defined(__clang__)
+ inline void operator()(std::__bit_reference<std::vector<bool> > x)
+ {
+ x.flip();
+ }
+#elif defined(__GNUC__) && __GNUC__ >= 2
inline void operator()(std::_Bit_reference x)
{
x.flip();