Changeset b57a3ee 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:
c735afb
Parents:
4f461384
git-author:
Dzejrou <dzejrou@…> (2018-06-25 16:58:08)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:24)
Message:

cpp: refactored the library layout, everything from the impl directory was moved to the bits directory for the sake of consistency, updated copyright notices and include guards

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

Legend:

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

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    3030#define LIBCPP_BITS_LOCALE_CODECVT
    3131
    32 #include <intetnal/locale.hpp>
     32#include <__bits/locale/locale.hpp>
    3333#include <string>
    3434
  • uspace/lib/cpp/include/__bits/locale/ctype.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    3030#define LIBCPP_BITS_LOCALE_CTYPE
    3131
     32#include <__bits/locale/locale.hpp>
     33#include <__bits/string/string.hpp>
    3234#include <cctype>
    33 #include <__bits/locale.hpp>
    34 #include <impl/string.hpp>
    3535
    3636namespace std
  • uspace/lib/cpp/include/__bits/locale/locale.hpp

    r4f461384 rb57a3ee  
    3030#define LIBCPP_BITS_LOCALE
    3131
    32 #include <impl/string.hpp>
     32#include <__bits/string/string.hpp>
    3333
    3434namespace std
  • uspace/lib/cpp/include/__bits/locale/locale_misc.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    2727 */
    2828
    29 #ifndef LIBCPP_LOCALE
    30 #define LIBCPP_LOCALE
     29#ifndef LIBCPP_BITS_LOCALE_MISC
     30#define LIBCPP_BITS_LOCALE_MISC
    3131
     32#include <__bits/locale/locale.hpp>
     33#include <__bits/locale/ctype.hpp>
     34#include <__bits/locale/num_get.hpp>
     35#include <__bits/locale/num_put.hpp>
     36#include <__bits/locale/numpunct.hpp>
    3237#include <cstdlib>
    3338#include <ios>
    3439#include <iosfwd>
    3540#include <string>
    36 
    37 #include <__bits/locale.hpp>
    38 #include <__bits/locale/ctype.hpp>
    39 #include <__bits/locale/num_get.hpp>
    40 #include <__bits/locale/num_put.hpp>
    41 #include <__bits/locale/numpunct.hpp>
    4241
    4342namespace std
  • uspace/lib/cpp/include/__bits/locale/num_get.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    3030#define LIBCPP_BITS_LOCALE_NUM_GET
    3131
     32#include <__bits/locale/locale.hpp>
     33#include <__bits/locale/numpunct.hpp>
    3234#include <cerrno>
    3335#include <cstring>
    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

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    3030#define LIBCPP_BITS_LOCALE_NUM_PUT
    3131
    32 #include <__bits/locale.hpp>
     32#include <__bits/locale/locale.hpp>
    3333#include <__bits/locale/numpunct.hpp>
    3434#include <ios>
  • uspace/lib/cpp/include/__bits/locale/numpunct.hpp

    r4f461384 rb57a3ee  
    11/*
    2  * Copyright (c) 2017 Jaroslav Jindrak
     2 * Copyright (c) 2018 Jaroslav Jindrak
    33 * All rights reserved.
    44 *
     
    3030#define LIBCPP_BITS_LOCALE_NUMPUNCT
    3131
    32 #include <__bits/locale.hpp>
     32#include <__bits/locale/locale.hpp>
    3333#include <string>
    3434
Note: See TracChangeset for help on using the changeset viewer.