Commit Graph

  • 798d77087e Update rationale.html, add link to article for downloading cc Moshe Rubin 2018-12-20 17:18:33 +0200
  • dc794c0ab2 Resolve test linking errors on non-Windows systems. Andrey Semashev 2018-10-27 23:06:38 +0300
  • 719bfe86fc fix jamfile errors James E. King III 2018-10-27 21:16:27 +0000
  • 4c4e3e20c1 Most members of std::allocate are deprecated in C++17 Daniela Engert 2018-01-01 10:58:45 +0100
  • 066189ef55 Update .travis.yml Peter Dimov 2017-12-18 20:21:19 +0200
  • 5024d2a872 Merge branch 'develop' Peter Dimov 2017-12-18 20:17:40 +0200
  • a88bf4d58a Merge branch 'feature/replace-auto_ptr' of https://github.com/DanielaE/boost.statechart into develop Peter Dimov 2017-11-21 03:01:12 +0200
  • e2a4c76f05
    Merge pull request #4 from r0mai/doc-fix Peter Dimov 2017-11-21 02:50:47 +0200
  • d886f37a7a Install libstdc++ 4.9 for clang to avoid ::gets error Peter Dimov 2017-11-21 01:50:05 +0200
  • 15e36c12d0 Fix -Wparentheses warning Peter Dimov 2017-11-21 01:44:01 +0200
  • 8b5c3d6f17 Pass requirements to lib rule as well Peter Dimov 2017-11-21 00:57:50 +0200
  • 7438c0c445 Add .travis.yml Peter Dimov 2017-11-21 00:01:00 +0200
  • 7be5ff2995 Fix test to not throw from destructor, terminates because implicit noexcept Peter Dimov 2017-11-20 23:57:36 +0200
  • b60c6746e4 Conditionally replace deprecated/removed std::auto_ptr by std::unique_ptr. Daniela Engert 2017-05-15 19:47:42 +0200
  • 96ff2c6e65 Fix dead link in index.html Andras Kucsma 2016-02-06 12:03:19 +0100
  • 3a156e9e7d Remove empty line not in develop. Peter Dimov 2015-01-25 21:03:01 +0200
  • e91308482e Merge branch 'develop' Peter Dimov 2015-01-25 20:59:35 +0200
  • 21225fa002 Merge pull request #2 from danieljames/metadata Peter Dimov 2015-01-25 20:29:20 +0200
  • 2ab18127d1 Add metadata file. Daniel James 2014-08-18 15:10:57 +0100
  • c905916309 Replaced deprecated cast.hpp with polymorphic_cast.hpp. Droped dependency to the Numeric library Antony Polukhin 2014-06-09 13:06:52 +0400
  • c9cf783b51 Merge pull request #1 from apolukhin/develop Peter Dimov 2014-06-10 20:44:56 +0300
  • 153249dfb5 Replaced deprecated cast.hpp with polymorphic_cast.hpp. Droped dependency to the Numeric library Antony Polukhin 2014-06-09 13:06:52 +0400
  • c3d6a1b6b4 Fixes #8480. Thanks for the patch! Andreas Huber 2013-06-09 14:23:18 +0000
  • b5707cd409 Revert [67111] (addition of boost/detail/iomanip.hpp) and all the commits that depend on it. ([68137], [68140], [68141], [68154], and [68165]). Steven Watanabe 2011-01-15 08:11:51 +0000
  • 426da14870 Replacing the use of <iomanip> with <boost/detail/iomanip.hpp> across Boost. On Linux, GNU's libstdc++, which is the default stdlib for icc and clang, cannot parse the <iomanip> header in version 4.5+ (which thankfully neither compiler advises the use of yet), as it's original C++98-friendly implementation has been replaced with a gnu++0x implementation. <boost/detail/iomanip.hpp> is a portable implementation of <iomanip>, providing boost::detail::setfill, boost::detail::setbase, boost::detail::setw, boost::detail::setprecision, boost::detail::setiosflags and boost::detail::resetiosflags. Bryce Adelstein-Lelbach 2011-01-14 02:35:58 +0000
  • 6df0ef3f17 Added previously forgotten file. Andreas Huber 2011-01-02 09:48:47 +0000
  • 63d6ea84ac Merged 1.46 changes from trunk to the release branch. Andreas Huber 2011-01-01 20:12:47 +0000
  • 64ef6e806b Fixes #4511. Andreas Huber 2010-12-07 14:46:09 +0000
  • 6593c42e2f Fixes previously introduced corner case bug. Andreas Huber 2010-11-11 20:04:12 +0000
  • 9eadbaec15 Fixes #4817, correctly this time. Andreas Huber 2010-11-09 19:54:14 +0000
  • 7d7c895db1 Fixes #4817. Andreas Huber 2010-11-06 11:12:15 +0000
  • 9a8435a90d Adapted spacing to the convention used in the rest of the code. Andreas Huber 2010-11-03 21:46:45 +0000
  • 07e8d731a2 Test that reproduces the issue reported at http://thread.gmane.org/gmane.comp.lib.boost.user/62965 Andreas Huber 2010-11-03 21:20:57 +0000
  • 29178547f4 Updated VS test projects to 1.45. Andreas Huber 2010-11-03 20:30:18 +0000
  • 6f89e81b99 Merged doc bug fix from trunk to branch. Andreas Huber 2010-07-19 21:25:58 +0000
  • 6c99996545 Corrected doc bug reported by Noah Roberts. Andreas Huber 2010-07-19 19:22:46 +0000
  • 081e02b263 Merged fixes for #4156 from trunk to the release branch. Andreas Huber 2010-04-30 12:23:50 +0000
  • 52f6e5f843 Fixes #4156. Thanks for the report! Andreas Huber 2010-04-28 04:26:51 +0000
  • b10de1b453 Merged recent statechart trunk changes to the release branch. Andreas Huber 2010-04-04 19:22:08 +0000
  • 0dcb457323 Fixes #3963. post_event() is now protected and forwards to post_event_impl(), which unfortunately must remain public. So, client code can still abuse the class by calling post_event_impl(), but the abuse should now be more obvious. I considered adding an assert to post_event_impl(), so that unauthorized calls from the outside could at least be detected at runtime, but it turned out that an assert requires more additional machinery than expected, which is why it was not implemented. Andreas Huber 2010-04-04 18:45:45 +0000
  • 8080bd73a9 Fixes #3329. Thanks for the report! Andreas Huber 2010-04-04 16:27:48 +0000
  • 2eac9aa7e0 Added documentation for triggering_event. Andreas Huber 2010-04-04 13:31:24 +0000
  • 10b7858fcf Updated the reference to reflect the recent change to the simple_state<>::outer_context() functions. Andreas Huber 2010-04-04 11:33:46 +0000
  • 6bf298fcb6 simple_state::context() now also finds bases of state types. Andreas Huber 2010-02-05 10:38:21 +0000
  • aee6435c74 Merged triggering_event from trunk to branch. Andreas Huber 2010-01-04 23:27:46 +0000
  • fbc0904963 Added state_machine::triggering_event(). Documentation follows. Andreas Huber 2009-10-27 22:38:02 +0000
  • 8f70b02732 rm cmake from trunk. I'm not entirely sure this is necessary to satisfy the inspect script, but I'm not taking any chances, and it is easy to put back Troy D. Straszheim 2009-10-17 02:07:38 +0000
  • 92f4f38d18 rm cmake from the release branch before it goes out broken. Policy dictates that you never commit to release, you commit to trunk and merge to release. Troy D. Straszheim 2009-10-17 01:10:45 +0000
  • 49b40e345f Copyrights on CMakeLists.txt to keep them from clogging up the inspect reports. This is essentially the same commit as r55095 on the release branch. Troy D. Straszheim 2009-07-26 00:49:56 +0000
  • 0bde704d41 Add basic copyright/license to keep cmake out of the inspection report Troy D. Straszheim 2009-07-22 21:51:01 +0000
  • 2dec5fc8f1 Changed the status page link to point to the release branch test results. Andreas Huber 2009-07-06 19:56:00 +0000
  • f88a3a7407 Merged .vcproj link updates from trunk to release branch Andreas Huber 2009-07-06 19:36:21 +0000
  • 8bf85eb3b5 Updated *.vcproj files to link against 1.40 binaries Andreas Huber 2009-07-06 19:26:14 +0000
  • e57bd59f12 Merged 1.40 bug fixes from trunk to release branch. Andreas Huber 2009-07-06 18:35:50 +0000
  • 417c6a4fb8 Updated acknowledgments. Andreas Huber 2009-07-06 18:03:06 +0000
  • f5901751ee Fixes #3092. Thanks for the report! Andreas Huber 2009-06-27 08:13:11 +0000
  • 7b7fa20fdf Use local copy of the valid HTML 4.01 icon, and make sure all the pages that use it are valid. Daniel James 2009-05-25 20:06:26 +0000
  • d8101eae53 Use a local copy of the valid HTML 4.01 icon. Daniel James 2009-05-16 14:23:59 +0000
  • e7910588d3 Fix some validation errors. Daniel James 2009-05-16 14:17:20 +0000
  • e1d3c0c14a Fix link and link-fail tests in CMake. Douglas Gregor 2009-05-11 04:50:32 +0000
  • 144fc1256c This should fix the non-standard code used in changeset 52616. Andreas Huber 2009-04-27 07:59:37 +0000
  • 64f1f044fe Fixed a bug that prevented the use of boost::ref() with fifo_scheduler<>::create_processor<>, reported by Steve Hawkes. Andreas Huber 2009-04-26 23:15:55 +0000
  • de2d14afde Updated VC project files to 1.39. Andreas Huber 2009-04-26 21:49:52 +0000
  • c6887bdc08 Merged various minor changes from trunk to branch. Andreas Huber 2009-01-31 14:43:46 +0000
  • 5357b28308 merge of cmake build files from trunk per beman Troy D. Straszheim 2009-01-24 18:57:20 +0000
  • 78a6451517 Fixes #2576. Whether or not the link will work with 1.38 all depends on whether test results for the 1.38 release will be created, see <http://thread.gmane.org/gmane.comp.lib.boost.testing/6103> for a related message. Andreas Huber 2009-01-04 11:20:25 +0000
  • a8ddaedef8 Updated getting started text to 1.38. Andreas Huber 2009-01-04 10:39:53 +0000
  • a01319f911 Fixes a VC9.0 warning. Andreas Huber 2008-11-16 12:24:26 +0000
  • cfe038376a Adapted VC projects to 1.38. Andreas Huber 2008-11-16 10:24:51 +0000
  • 5336f4b45e Fixes #2389 Andreas Huber 2008-11-09 23:19:15 +0000
  • fa4d6d8650 Add or fix svn:mime-type and svn:eol-style for several files. Daniel James 2008-11-09 11:44:08 +0000
  • 74617a6642 Updating dependency information for modularized libraries. Michael A. Jackson 2008-11-07 17:05:27 +0000
  • 4f0949106f Updating CMake files to latest trunk. Added dependency information for regression tests and a few new macros for internal use. Michael A. Jackson 2008-11-07 17:02:56 +0000
  • 5439ddd9cc Set several svn:mime-type and svn:eol-style for several files. Daniel James 2008-11-05 19:38:45 +0000
  • 0b1d8118c3 Continuing merge of CMake build system files into trunk with the encouragement of Doug Gregor Michael A. Jackson 2008-11-01 13:15:41 +0000
  • afa1d4eb90 Merged PingPong example fix from trunk to release branch. Andreas Huber 2008-07-20 06:53:58 +0000
  • 8aa8bb380c This should fix the PingPong example failure for GCC. Andreas Huber 2008-07-20 06:49:19 +0000
  • 813f468762 Merged fix for PingPong example from trunk to branch. Andreas Huber 2008-07-19 19:05:40 +0000
  • ff869be149 Yet another try at a PingPong example fix. Andreas Huber 2008-07-19 18:34:03 +0000
  • 9e4a2765b3 Yet another try at fixing the broken PingPong example. Andreas Huber 2008-07-19 14:03:57 +0000
  • 8bc0fd5ea3 Updated link to 1.36 status page. Andreas Huber 2008-07-18 21:25:18 +0000
  • 3b148f9063 Updated link to status page. Andreas Huber 2008-07-18 21:24:19 +0000
  • 1a303088bc Merged an example bug fix and a revision history update from trunk to release branch. Andreas Huber 2008-07-18 21:11:34 +0000
  • 2ecdf79374 Updated the revision history for 1.36.0 Andreas Huber 2008-07-18 20:59:47 +0000
  • c9f93772b3 This should fix several PingPong example failures. Andreas Huber 2008-07-17 17:38:41 +0000
  • 5fd4d7c849 Merged 1.36 changes from trunk to release branch Andreas Huber 2008-07-15 22:50:59 +0000
  • 6a53799c51 Changed the PingPong example to demonstrate how the inner workings of an asynchronous_state_machine<> subclass can be hidden. Andreas Huber 2008-04-13 13:57:42 +0000
  • 15b6552f96 Adapted fifo_scheduler<> to the changed allocator interface of boost::function. Andreas Huber 2008-04-06 15:16:00 +0000
  • ce464b657e Added event<> placement new documentation. Andreas Huber 2008-04-06 13:13:52 +0000
  • ce4ee68b56 Silenced GCC 4.0.1 warning (patch supplied by Euan) <http://thread.gmane.org/gmane.comp.lib.boost.devel/171071> Andreas Huber 2008-02-16 10:19:49 +0000
  • e81fbd5bc2 Merged revisions 43206,43208-43213 via svnmerge from https://svn.boost.org/svn/boost/trunk Daniel James 2008-02-10 16:39:38 +0000
  • a3d35138a3 Point links to the pages that used to be in 'more' to the site. Daniel James 2008-02-10 15:02:17 +0000
  • c1ad876120 Merged fix for #1594 from trunk to release branch. Andreas Huber 2008-01-27 21:52:59 +0000
  • 875b4ff5e7 Fixes #1594 Andreas Huber 2008-01-23 21:46:58 +0000
  • 07d20a7977 Various doc updates. Andreas Huber 2008-01-06 13:49:31 +0000
  • 5c94ef5b16 Added defaults for in_state_reaction template parameters and updated tests accordingly. Andreas Huber 2008-01-05 12:42:02 +0000
  • bcddfba66d This should fix template parameter shadowing errors for gcc and Intel compilers. Andreas Huber 2008-01-04 18:23:18 +0000
  • 0f63090551 - Updated copyright years - Factored out transition dispatching logic Andreas Huber 2008-01-03 23:17:00 +0000
  • 14b29fcfa2 Minor implementation simplification. Andreas Huber 2008-01-02 22:15:54 +0000
  • 8eb0eaf9f8 Added a new FAQ item. Andreas Huber 2008-01-02 20:31:42 +0000