~ubuntu-branches/ubuntu/wily/deal.ii/wily-proposed

« back to all changes in this revision

Viewing changes to contrib/boost/include/boost/archive/wcslen.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Adam C. Powell, IV, Adam C. Powell, IV, Denis Barbier
  • Date: 2010-07-29 13:47:01 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20100729134701-qk60t2om7u7oklkb
Tags: 6.3.1-1
[ Adam C. Powell, IV ]
* Changed to source format 3.0 (quilt).
* Changed maintainer to debian-science with Adam Powell as uploader.
* Added source lintian overrides about Adam Powell's name.
* Added Vcs info on git repository.
* Bumped Standards-Version.
* Changed stamp-patch to patch target and fixed its application criterion.
* Moved make_dependencies and expand_instantiations to a versioned directory
  to avoid shlib package conflicts.

[ Denis Barbier ]
* New upstream release (closes: #562332).
  + Added libtbb support.
  + Forward-ported all patches.
* Updates for new PETSc version, including workaround for different versions
  of petsc and slepc.
* Add debian/watch.
* Update to debhelper 7.
* Added pdebuild patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef BOOST_ARCHIVE_WCSLEN_HPP
 
2
#define BOOST_ARCHIVE_WCSLEN_HPP
 
3
 
 
4
// MS compatible compilers support #pragma once
 
5
#if defined(_MSC_VER) && (_MSC_VER >= 1020)
 
6
# pragma once
 
7
#endif
 
8
 
 
9
/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
 
10
// wcslen.hpp:
 
11
 
 
12
// (C) Copyright 2002 Robert Ramey - http://www.rrsd.com . 
 
13
// Use, modification and distribution is subject to the Boost Software
 
14
// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
 
15
// http://www.boost.org/LICENSE_1_0.txt)
 
16
 
 
17
//  See http://www.boost.org for updates, documentation, and revision history.
 
18
 
 
19
#include <cstddef> // size_t
 
20
#include <boost/config.hpp>
 
21
#if defined(BOOST_NO_STDC_NAMESPACE)
 
22
namespace std{ 
 
23
    using ::size_t; 
 
24
} // namespace std
 
25
#endif
 
26
 
 
27
#ifndef BOOST_NO_CWCHAR
 
28
 
 
29
// a couple of libraries which include wchar_t don't include
 
30
// wcslen
 
31
 
 
32
#if defined(BOOST_DINKUMWARE_STDLIB) && BOOST_DINKUMWARE_STDLIB < 306 \
 
33
|| defined(__LIBCOMO__) 
 
34
 
 
35
namespace std {
 
36
inline std::size_t wcslen(const wchar_t * ws)
 
37
{
 
38
    const wchar_t * eows = ws;
 
39
    while(* eows != 0)
 
40
        ++eows;
 
41
    return eows - ws;
 
42
}
 
43
} // namespace std
 
44
 
 
45
#else
 
46
 
 
47
#include <cwchar>
 
48
#ifdef BOOST_NO_STDC_NAMESPACE
 
49
namespace std{ using ::wcslen; }
 
50
#endif
 
51
 
 
52
#endif // wcslen
 
53
 
 
54
#endif //BOOST_NO_CWCHAR
 
55
 
 
56
#endif //BOOST_ARCHIVE_WCSLEN_HPP