1 | 1 |
new file mode 100755 |
... | ... |
@@ -0,0 +1,33 @@ |
1 |
+// Copyright David Abrahams 2003. |
|
2 |
+// Distributed under the Boost Software License, Version 1.0. (See |
|
3 |
+// accompanying file LICENSE_1_0.txt or copy at |
|
4 |
+// http://www.boost.org/LICENSE_1_0.txt) |
|
5 |
+ |
|
6 |
+#ifndef BOOST_IMPLICIT_CAST_DWA200356_HPP |
|
7 |
+#define BOOST_IMPLICIT_CAST_DWA200356_HPP |
|
8 |
+ |
|
9 |
+namespace boost { |
|
10 |
+ |
|
11 |
+namespace detail { |
|
12 |
+ |
|
13 |
+template<class T> struct icast_identity |
|
14 |
+{ |
|
15 |
+ typedef T type; |
|
16 |
+}; |
|
17 |
+ |
|
18 |
+} // namespace detail |
|
19 |
+ |
|
20 |
+// implementation originally suggested by C. Green in |
|
21 |
+// http://lists.boost.org/MailArchives/boost/msg00886.php |
|
22 |
+ |
|
23 |
+// The use of identity creates a non-deduced form, so that the |
|
24 |
+// explicit template argument must be supplied |
|
25 |
+template <typename T> |
|
26 |
+inline T implicit_cast (typename boost::detail::icast_identity<T>::type x) { |
|
27 |
+ return x; |
|
28 |
+} |
|
29 |
+ |
|
30 |
+} // namespace boost |
|
31 |
+ |
|
32 |
+ |
|
33 |
+#endif // BOOST_IMPLICIT_CAST_DWA200356_HPP |
From: Steffen Neumann <sneumann@ipb-halle.de>
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/mzR@125184 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
deleted file mode 100644 |
... | ... |
@@ -1,29 +0,0 @@ |
1 |
-// Copyright David Abrahams 2003. |
|
2 |
-// Distributed under the Boost Software License, Version 1.0. (See |
|
3 |
-// accompanying file LICENSE_1_0.txt or copy at |
|
4 |
-// http://www.boost.org/LICENSE_1_0.txt) |
|
5 |
-#ifndef IMPLICIT_CAST_DWA200356_HPP |
|
6 |
-# define IMPLICIT_CAST_DWA200356_HPP |
|
7 |
- |
|
8 |
-# include <boost/mpl/identity.hpp> |
|
9 |
- |
|
10 |
-namespace boost { |
|
11 |
- |
|
12 |
-// implementation originally suggested by C. Green in |
|
13 |
-// http://lists.boost.org/MailArchives/boost/msg00886.php |
|
14 |
- |
|
15 |
-// The use of identity creates a non-deduced form, so that the |
|
16 |
-// explicit template argument must be supplied |
|
17 |
-template <typename T> |
|
18 |
-inline T implicit_cast (typename mpl::identity<T>::type x) { |
|
19 |
- return x; |
|
20 |
-} |
|
21 |
- |
|
22 |
-// incomplete return type now is here |
|
23 |
-//template <typename T> |
|
24 |
-//void implicit_cast (...); |
|
25 |
- |
|
26 |
-} // namespace boost |
|
27 |
- |
|
28 |
- |
|
29 |
-#endif // IMPLICIT_CAST_DWA200356_HPP |
From: Laurent <lg390@cam.ac.uk>
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/mzR@125180 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,36 +1,29 @@ |
1 |
-// Copyright David Abrahams 2003. |
|
2 |
-// Distributed under the Boost Software License, Version 1.0. (See |
|
3 |
-// accompanying file LICENSE_1_0.txt or copy at |
|
4 |
-// http://www.boost.org/LICENSE_1_0.txt) |
|
5 |
-#ifndef IMPLICIT_CAST_DWA200356_HPP |
|
6 |
-# define IMPLICIT_CAST_DWA200356_HPP |
|
7 |
- |
|
8 |
-namespace boost { |
|
9 |
- |
|
10 |
-namespace detail { |
|
11 |
- |
|
12 |
-template<class T> struct icast_identity |
|
13 |
-{ |
|
14 |
- typedef T type; |
|
15 |
-}; |
|
16 |
- |
|
17 |
-} // namespace detail |
|
18 |
- |
|
19 |
-// implementation originally suggested by C. Green in |
|
20 |
-// http://lists.boost.org/MailArchives/boost/msg00886.php |
|
21 |
- |
|
22 |
-// The use of identity creates a non-deduced form, so that the |
|
23 |
-// explicit template argument must be supplied |
|
24 |
-template <typename T> |
|
25 |
-inline T implicit_cast (typename boost::detail::icast_identity<T>::type x) { |
|
26 |
- return x; |
|
27 |
-} |
|
28 |
- |
|
29 |
-// incomplete return type now is here |
|
30 |
-//template <typename T> |
|
31 |
-//void implicit_cast (...); |
|
32 |
- |
|
33 |
-} // namespace boost |
|
34 |
- |
|
35 |
- |
|
36 |
-#endif // IMPLICIT_CAST_DWA200356_HPP |
|
1 |
+// Copyright David Abrahams 2003. |
|
2 |
+// Distributed under the Boost Software License, Version 1.0. (See |
|
3 |
+// accompanying file LICENSE_1_0.txt or copy at |
|
4 |
+// http://www.boost.org/LICENSE_1_0.txt) |
|
5 |
+#ifndef IMPLICIT_CAST_DWA200356_HPP |
|
6 |
+# define IMPLICIT_CAST_DWA200356_HPP |
|
7 |
+ |
|
8 |
+# include <boost/mpl/identity.hpp> |
|
9 |
+ |
|
10 |
+namespace boost { |
|
11 |
+ |
|
12 |
+// implementation originally suggested by C. Green in |
|
13 |
+// http://lists.boost.org/MailArchives/boost/msg00886.php |
|
14 |
+ |
|
15 |
+// The use of identity creates a non-deduced form, so that the |
|
16 |
+// explicit template argument must be supplied |
|
17 |
+template <typename T> |
|
18 |
+inline T implicit_cast (typename mpl::identity<T>::type x) { |
|
19 |
+ return x; |
|
20 |
+} |
|
21 |
+ |
|
22 |
+// incomplete return type now is here |
|
23 |
+//template <typename T> |
|
24 |
+//void implicit_cast (...); |
|
25 |
+ |
|
26 |
+} // namespace boost |
|
27 |
+ |
|
28 |
+ |
|
29 |
+#endif // IMPLICIT_CAST_DWA200356_HPP |
Commit id: 0b3d4d9bb71e3ca5891b777610fc8dec103a6d61
Bumped version after KK's updates
Commit id: 9e04409b64757a177893d56c0300904f31945cb1
modified: src/pwiz/data/common/BinaryIndexStream.cpp modified: src/win/i386/libpwiz.a modified: src/win/x64/libpwiz.a
Commit id: f16b04258dc20bf3315beac99708e11728cfc12b
update precompiled lib for windows
Commit id: 5d56197f1148378d92e89b2d0a167e18c4b7ab2e
Bump version, tame .Rbuildignore
Commit id: 432da5bd294c9b87f7761e15bc814c3785c21abf
Merge remote-tracking branch 'origin/boost_159'
Commit id: 92be978bf72d90c2222a19ddf365f6d1acc9f20d
upadte Makevars
Commit id: ae75037a780cead56c4d20bedf822c94fb413677
upgrade to boost 1.5.9
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/mzR@110126 bc3139a8-67e5-0310-9ffc-ced21a209358
... | ... |
@@ -1,29 +1,36 @@ |
1 |
-// Copyright David Abrahams 2003. |
|
2 |
-// Distributed under the Boost Software License, Version 1.0. (See |
|
3 |
-// accompanying file LICENSE_1_0.txt or copy at |
|
4 |
-// http://www.boost.org/LICENSE_1_0.txt) |
|
5 |
-#ifndef IMPLICIT_CAST_DWA200356_HPP |
|
6 |
-# define IMPLICIT_CAST_DWA200356_HPP |
|
7 |
- |
|
8 |
-# include <boost/mpl/identity.hpp> |
|
9 |
- |
|
10 |
-namespace boost { |
|
11 |
- |
|
12 |
-// implementation originally suggested by C. Green in |
|
13 |
-// http://lists.boost.org/MailArchives/boost/msg00886.php |
|
14 |
- |
|
15 |
-// The use of identity creates a non-deduced form, so that the |
|
16 |
-// explicit template argument must be supplied |
|
17 |
-template <typename T> |
|
18 |
-inline T implicit_cast (typename mpl::identity<T>::type x) { |
|
19 |
- return x; |
|
20 |
-} |
|
21 |
- |
|
22 |
-// incomplete return type now is here |
|
23 |
-//template <typename T> |
|
24 |
-//void implicit_cast (...); |
|
25 |
- |
|
26 |
-} // namespace boost |
|
27 |
- |
|
28 |
- |
|
29 |
-#endif // IMPLICIT_CAST_DWA200356_HPP |
|
1 |
+// Copyright David Abrahams 2003. |
|
2 |
+// Distributed under the Boost Software License, Version 1.0. (See |
|
3 |
+// accompanying file LICENSE_1_0.txt or copy at |
|
4 |
+// http://www.boost.org/LICENSE_1_0.txt) |
|
5 |
+#ifndef IMPLICIT_CAST_DWA200356_HPP |
|
6 |
+# define IMPLICIT_CAST_DWA200356_HPP |
|
7 |
+ |
|
8 |
+namespace boost { |
|
9 |
+ |
|
10 |
+namespace detail { |
|
11 |
+ |
|
12 |
+template<class T> struct icast_identity |
|
13 |
+{ |
|
14 |
+ typedef T type; |
|
15 |
+}; |
|
16 |
+ |
|
17 |
+} // namespace detail |
|
18 |
+ |
|
19 |
+// implementation originally suggested by C. Green in |
|
20 |
+// http://lists.boost.org/MailArchives/boost/msg00886.php |
|
21 |
+ |
|
22 |
+// The use of identity creates a non-deduced form, so that the |
|
23 |
+// explicit template argument must be supplied |
|
24 |
+template <typename T> |
|
25 |
+inline T implicit_cast (typename boost::detail::icast_identity<T>::type x) { |
|
26 |
+ return x; |
|
27 |
+} |
|
28 |
+ |
|
29 |
+// incomplete return type now is here |
|
30 |
+//template <typename T> |
|
31 |
+//void implicit_cast (...); |
|
32 |
+ |
|
33 |
+} // namespace boost |
|
34 |
+ |
|
35 |
+ |
|
36 |
+#endif // IMPLICIT_CAST_DWA200356_HPP |
git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/mzR@57456 bc3139a8-67e5-0310-9ffc-ced21a209358
1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,29 @@ |
1 |
+// Copyright David Abrahams 2003. |
|
2 |
+// Distributed under the Boost Software License, Version 1.0. (See |
|
3 |
+// accompanying file LICENSE_1_0.txt or copy at |
|
4 |
+// http://www.boost.org/LICENSE_1_0.txt) |
|
5 |
+#ifndef IMPLICIT_CAST_DWA200356_HPP |
|
6 |
+# define IMPLICIT_CAST_DWA200356_HPP |
|
7 |
+ |
|
8 |
+# include <boost/mpl/identity.hpp> |
|
9 |
+ |
|
10 |
+namespace boost { |
|
11 |
+ |
|
12 |
+// implementation originally suggested by C. Green in |
|
13 |
+// http://lists.boost.org/MailArchives/boost/msg00886.php |
|
14 |
+ |
|
15 |
+// The use of identity creates a non-deduced form, so that the |
|
16 |
+// explicit template argument must be supplied |
|
17 |
+template <typename T> |
|
18 |
+inline T implicit_cast (typename mpl::identity<T>::type x) { |
|
19 |
+ return x; |
|
20 |
+} |
|
21 |
+ |
|
22 |
+// incomplete return type now is here |
|
23 |
+//template <typename T> |
|
24 |
+//void implicit_cast (...); |
|
25 |
+ |
|
26 |
+} // namespace boost |
|
27 |
+ |
|
28 |
+ |
|
29 |
+#endif // IMPLICIT_CAST_DWA200356_HPP |