Changeset 7bbf91e in mainline for uspace/lib/cpp/include/__bits/locale


Ignore:
Timestamp:
2018-07-05T21:41:24Z (7 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
2e53e83d
Parents:
fc15120
git-author:
Dzejrou <dzejrou@…> (2018-05-16 18:35:17)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
Message:

cpp: changed internal to bits to avoid include space pollusion, fixed old std::hel:: bugs in files that weren't touched since

Location:
uspace/lib/cpp/include/__bits/locale
Files:
5 moved

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/__bits/locale/codecvt.hpp

    rfc15120 r7bbf91e  
    2727 */
    2828
    29 #ifndef LIBCPP_INTERNAL_LOCALE_CODECVT
    30 #define LIBCPP_INTERNAL_LOCALE_CODECVT
     29#ifndef LIBCPP_BITS_LOCALE_CODECVT
     30#define LIBCPP_BITS_LOCALE_CODECVT
    3131
    3232#include <intetnal/locale.hpp>
  • uspace/lib/cpp/include/__bits/locale/ctype.hpp

    rfc15120 r7bbf91e  
    2727 */
    2828
    29 #ifndef LIBCPP_INTERNAL_LOCALE_CTYPE
    30 #define LIBCPP_INTERNAL_LOCALE_CTYPE
     29#ifndef LIBCPP_BITS_LOCALE_CTYPE
     30#define LIBCPP_BITS_LOCALE_CTYPE
    3131
    3232#include <cctype>
    33 #include <internal/locale.hpp>
     33#include <__bits/locale.hpp>
    3434#include <impl/string.hpp>
    3535
  • uspace/lib/cpp/include/__bits/locale/num_get.hpp

    rfc15120 r7bbf91e  
    2727 */
    2828
    29 #ifndef LIBCPP_INTERNAL_LOCALE_NUM_GET
    30 #define LIBCPP_INTERNAL_LOCALE_NUM_GET
     29#ifndef LIBCPP_BITS_LOCALE_NUM_GET
     30#define LIBCPP_BITS_LOCALE_NUM_GET
    3131
    3232#include <cerrno>
    3333#include <cstring>
    34 #include <internal/locale.hpp>
    35 #include <internal/locale/numpunct.hpp>
     34#include <__bits/locale.hpp>
     35#include <__bits/locale/numpunct.hpp>
    3636#include <ios>
    3737#include <iterator>
  • uspace/lib/cpp/include/__bits/locale/num_put.hpp

    rfc15120 r7bbf91e  
    2727 */
    2828
    29 #ifndef LIBCPP_INTERNAL_LOCALE_NUM_PUT
    30 #define LIBCPP_INTERNAL_LOCALE_NUM_PUT
    31 
    32 #include <internal/locale.hpp>
    33 #include <internal/locale/numpunct.hpp>
     29#ifndef LIBCPP_BITS_LOCALE_NUM_PUT
     30#define LIBCPP_BITS_LOCALE_NUM_PUT
     31
     32#include <__bits/locale.hpp>
     33#include <__bits/locale/numpunct.hpp>
    3434#include <ios>
    3535#include <iterator>
  • uspace/lib/cpp/include/__bits/locale/numpunct.hpp

    rfc15120 r7bbf91e  
    2727 */
    2828
    29 #ifndef LIBCPP_INTERNAL_LOCALE_NUMPUNCT
    30 #define LIBCPP_INTERNAL_LOCALE_NUMPUNCT
    31 
    32 #include <internal/locale.hpp>
     29#ifndef LIBCPP_BITS_LOCALE_NUMPUNCT
     30#define LIBCPP_BITS_LOCALE_NUMPUNCT
     31
     32#include <__bits/locale.hpp>
    3333#include <string>
    3434
Note: See TracChangeset for help on using the changeset viewer.