Skip to content

Commit

Permalink
Update uses of boost/bind.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Sep 3, 2020
1 parent 944f760 commit 5f2e8c2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion src/code_snippet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/

#include <boost/bind.hpp>
#include <boost/bind/bind.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/spirit/include/classic_actor.hpp>
#include <boost/spirit/include/classic_confix.hpp>
Expand All @@ -20,6 +20,8 @@
#include "template_stack.hpp"
#include "values.hpp"

using namespace boost::placeholders;

namespace quickbook
{
namespace cl = boost::spirit::classic;
Expand Down
4 changes: 3 additions & 1 deletion src/doc_info_actions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
=============================================================================*/
#include <sstream>
#include <boost/algorithm/string/join.hpp>
#include <boost/bind.hpp>
#include <boost/bind/bind.hpp>
#include <boost/filesystem/operations.hpp>
#include "doc_info_tags.hpp"
#include "document_state.hpp"
Expand All @@ -22,6 +22,8 @@
#include "stream.hpp"
#include "utils.hpp"

using namespace boost::placeholders;

namespace quickbook
{
struct doc_info_values
Expand Down
4 changes: 3 additions & 1 deletion src/post_process.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
#include <cctype>
#include <set>
#include <stack>
#include <boost/bind.hpp>
#include <boost/bind/bind.hpp>
#include <boost/spirit/include/classic_core.hpp>
#include <boost/spirit/include/phoenix1_operators.hpp>
#include <boost/spirit/include/phoenix1_primitives.hpp>

using namespace boost::placeholders;

namespace quickbook
{
namespace cl = boost::spirit::classic;
Expand Down

0 comments on commit 5f2e8c2

Please sign in to comment.