Commit Graph
17 Commits
Author SHA1 Message Date
Brian Kuhl 7c15df79f2 isspace(c) is not a macro in Dinkum clib for VxWorks, must be in std namespace 2017-08-10 12:19:32 -04:00
fiesh 8767d374ea manip.hpp: Do not use "using namespace std;"
Changed "using namespace std;  ws()" into "std::ws()" to avoid ambiguities with a possible "::ws" namespace.
2015-11-23 17:21:59 +01:00
Kohei Takahashi 687668c110 Fix sprious compile error on VS2015 Preview.
MSVC 2015 Preview will treat unary-ctor call as a variable declaration
even if member call follows, which member has the same name with any
other class (i.e. there are no relations between the member and such
class). This issue already reported at [1].

1. https://connect.microsoft.com/VisualStudio/feedback/details/1037783/unary-ctor-call-v-s-variable-decl

    struct foo
    {
        foo(int) {}
        void set() {}
    };

    struct set;

    int main()
    {
        int i;
        foo(i).set(); // VS2015 try to decl `i` here and conflict with above.
    }
2014-11-24 03:07:16 +09:00
Eric Niebler e113b31fdd final gpu-enabling tweaks 2014-01-28 14:32:03 -08:00
Eric Niebler e5b0f3c2e1 gpu-enable more functions, but not stream inserters and extractors 2014-01-23 21:30:18 -08:00
Eric Niebler c4f9f0d1b6 gpu-enable functions 2014-01-22 23:55:53 -08:00
Stephen Kelly 94618528b6 Remove use of obsolete BOOST_NO_TEMPLATED_STREAMS macro.
It was only defined for no-longer-supported-gcc.

[SVN r86062]
2013-09-30 15:56:52 +00:00
Joel de Guzman a25a7092d8 Patches from Tim Blechmann
[SVN r75976]
2011-12-16 00:14:49 +00:00
Joel de Guzman 0e7a013851 Bumped copyright date
[SVN r74407]
2011-09-16 05:30:23 +00:00
Hartmut Kaiser 03290abb85 Fusion: silenced a couple of MSVC warnings created during Spirit test runs
[SVN r57502]
2009-11-09 03:57:40 +00:00
Beman Dawes 8b749bef46 With his kind permission, change Jaakko "Järvi" to "Jarvi"
[SVN r46808]
2008-06-28 13:45:21 +00:00
Joel de Guzman 8f51212782 fix missing include
[SVN r37199]
2007-03-16 14:49:48 +00:00
Joel de Guzman 92e7e32ed8 update copyright notice
[SVN r37131]
2007-03-02 10:44:14 +00:00
Joel de Guzman 4f14542256 better operator handling
[SVN r36126]
2006-11-21 02:01:13 +00:00
Joel de Guzman 141dac45fe no more #include <iostream>
[SVN r36102]
2006-11-20 06:18:12 +00:00
Joel de Guzman 5efba059ed Tweaks for xpressive
[SVN r34928]
2006-08-23 02:37:18 +00:00
Joel de Guzman 75b9d13a88 Initial move from Spirit CVS
[SVN r34896]
2006-08-16 16:50:52 +00:00