Opened 13 years ago
Closed 12 years ago
#4070 closed Bugs (fixed)
Incorrect header guard on fusion/include/has_keys.hpp
Reported by: | Joel Falcou | Owned by: | Joel de Guzman |
---|---|---|---|
Milestone: | Boost 1.43.0 | Component: | fusion |
Version: | Boost 1.42.0 | Severity: | Showstopper |
Keywords: | Cc: |
Description
boost/fusion/include/has_keys has the following code:
#if !defined(FUSION_INCLUDE_HAS_KEY) #define FUSION_INCLUDE_EMPTY
#include <boost/fusion/sequence/intrinsic/has_key.hpp>
#endif
the #define is obviously wrong and clash if empty.hpp is included afterward.
Fix is trivial.
Note:
See TracTickets
for help on using tickets.
(In [62828]) Fix #include guard of boost/fusion/include/has_key.hpp. Fixes #4070