mirror of
https://github.com/boostorg/detail.git
synced 2025-12-20 14:02:39 +01:00
Compare commits
35 Commits
boost-1.36
...
svn-branch
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1fcb238b7f | ||
|
|
20c35502cb | ||
|
|
ac8783da2c | ||
|
|
4ae97fa5cb | ||
|
|
18dbae4700 | ||
|
|
06946f6607 | ||
|
|
3c2c779258 | ||
|
|
7c911e570f | ||
|
|
96b53f28a8 | ||
|
|
7e259580c1 | ||
|
|
3d539b76df | ||
|
|
e4054d843a | ||
|
|
9dcdea9efc | ||
|
|
715c05005f | ||
|
|
7571f64b35 | ||
|
|
6443246b4b | ||
|
|
537dc5325c | ||
|
|
82bda71faa | ||
|
|
7c8108ee0b | ||
|
|
1da5dd89a8 | ||
|
|
57fd51f8f4 | ||
|
|
60e5d575c0 | ||
|
|
87ff652a07 | ||
|
|
a548ecc968 | ||
|
|
4e009de1ec | ||
|
|
751e863564 | ||
|
|
62b7d277f2 | ||
|
|
7106b3c8b1 | ||
|
|
cd03e4d537 | ||
|
|
afbb75b3cb | ||
|
|
e2bea194a3 | ||
|
|
72a38b9137 | ||
|
|
e71cca99a6 | ||
|
|
d2e2b59111 | ||
|
|
7d61e78d56 |
0
include/boost/detail/indirect_traits.hpp
Executable file → Normal file
0
include/boost/detail/indirect_traits.hpp
Executable file → Normal file
0
include/boost/detail/is_function_ref_tester.hpp
Executable file → Normal file
0
include/boost/detail/is_function_ref_tester.hpp
Executable file → Normal file
0
include/boost/detail/is_incrementable.hpp
Executable file → Normal file
0
include/boost/detail/is_incrementable.hpp
Executable file → Normal file
0
include/boost/detail/is_xxx.hpp
Executable file → Normal file
0
include/boost/detail/is_xxx.hpp
Executable file → Normal file
@@ -1,4 +1,4 @@
|
||||
// Copyright <EFBFBD> 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
|
||||
// Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
|
||||
// Andrew Lumsdaine, Indiana University (lums@osl.iu.edu).
|
||||
// Distributed under the Boost Software License, Version 1.0. (See accompany-
|
||||
// ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
||||
|
||||
0
include/boost/indirect_reference.hpp
Executable file → Normal file
0
include/boost/indirect_reference.hpp
Executable file → Normal file
@@ -1,20 +1,16 @@
|
||||
// -------------------------------------
|
||||
// -----------------------------------------------------------
|
||||
// integer_log2.hpp
|
||||
//
|
||||
// Gives the integer part of the logarithm, in base 2, of a
|
||||
// given number. Behavior is undefined if the argument is <= 0.
|
||||
//
|
||||
//
|
||||
// (C) Copyright Gennaro Prota 2003 - 2004.
|
||||
// Copyright (c) 2003-2004, 2008 Gennaro Prota
|
||||
//
|
||||
// Distributed under 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)
|
||||
//
|
||||
// ------------------------------------------------------
|
||||
//
|
||||
// $Id$
|
||||
|
||||
// -----------------------------------------------------------
|
||||
|
||||
#ifndef BOOST_INTEGER_LOG2_HPP_GP_20030301
|
||||
#define BOOST_INTEGER_LOG2_HPP_GP_20030301
|
||||
@@ -37,7 +33,7 @@ namespace boost {
|
||||
|
||||
while (x != 1) {
|
||||
|
||||
const T t = x >> n;
|
||||
const T t = static_cast<T>(x >> n);
|
||||
if (t) {
|
||||
result += n;
|
||||
x = t;
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
|
||||
// utf8_codecvt_facet.cpp
|
||||
|
||||
// Copyright <EFBFBD> 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
|
||||
// Copyright (c) 2001 Ronald Garcia, Indiana University (garcia@osl.iu.edu)
|
||||
// Andrew Lumsdaine, Indiana University (lums@osl.iu.edu).
|
||||
// Use, modification and distribution is subject to the Boost Software
|
||||
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
|
||||
Reference in New Issue
Block a user