-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into git_issue_80
Fixed Conflicts: include/boost/regex/v4/basic_regex_creator.hpp include/boost/regex/v4/basic_regex_parser.hpp
- Loading branch information
Showing
9 changed files
with
102 additions
and
104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
/* | ||
* | ||
* Copyright (c) 2020 | ||
* John Maddock | ||
* | ||
* Use, modification and distribution are subject to the | ||
* Boost Software License, Version 1.0. (See accompanying file | ||
* LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) | ||
* | ||
*/ | ||
|
||
/* | ||
* LOCATION: see http://www.boost.org for most recent version. | ||
* FILE basic_regex_parser.cpp | ||
* VERSION see <boost/version.hpp> | ||
* DESCRIPTION: Declares template class basic_regex_parser. | ||
*/ | ||
|
||
#include <boost/regex/config.hpp> | ||
#include <set> | ||
|
||
#ifndef BOOST_REGEX_V4_INDEXED_BIT_FLAG_HPP | ||
#define BOOST_REGEX_V4_INDEXED_BIT_FLAG_HPP | ||
|
||
namespace boost{ | ||
namespace BOOST_REGEX_DETAIL_NS{ | ||
|
||
class indexed_bit_flag | ||
{ | ||
boost::uint64_t low_mask; | ||
std::set<std::size_t> mask_set; | ||
public: | ||
indexed_bit_flag() : low_mask(0) {} | ||
void set(std::size_t i) | ||
{ | ||
if (i < std::numeric_limits<boost::uint64_t>::digits - 1) | ||
low_mask |= static_cast<boost::uint64_t>(1u) << i; | ||
else | ||
mask_set.insert(i); | ||
} | ||
bool test(std::size_t i) | ||
{ | ||
if (i < std::numeric_limits<boost::uint64_t>::digits - 1) | ||
return low_mask & static_cast<boost::uint64_t>(1u) << i ? true : false; | ||
else | ||
return mask_set.find(i) != mask_set.end(); | ||
} | ||
}; | ||
|
||
} // namespace BOOST_REGEX_DETAIL_NS | ||
} // namespace boost | ||
|
||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters