Changeset a37eeb9 in mainline


Ignore:
Timestamp:
2018-07-05T21:41:25Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
8e2154e7
Parents:
eb2c8b6
git-author:
Dzejrou <dzejrou@…> (2018-06-28 16:07:18)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:25)
Message:

cpp: fixed indentation

File:
1 edited

Legend:

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

    reb2c8b6 ra37eeb9  
    3434namespace std
    3535{
     36    class type_info
     37    {
     38        public:
     39            virtual ~type_info();
    3640
    37 class type_info
    38 {
    39     public:
    40         virtual ~type_info();
     41            bool operator==(const type_info&) const noexcept;
     42            bool operator!=(const type_info&) const noexcept;
    4143
    42         bool operator==(const type_info&) const noexcept;
    43         bool operator!=(const type_info&) const noexcept;
     44            bool before(const type_info&) const noexcept;
    4445
    45         bool before(const type_info&) const noexcept;
     46            size_t hash_code() const noexcept;
    4647
    47         size_t hash_code() const noexcept;
     48            const char* name() const noexcept;
    4849
    49         const char* name() const noexcept;
     50            type_info(const type_info&) = delete;
     51            type_info& operator=(const type_info&) = delete;
    5052
    51         type_info(const type_info&) = delete;
    52         type_info& operator=(const type_info&) = delete;
    53 
    54     private:
    55         const char* __name;
    56 };
     53        private:
     54            const char* __name;
     55    };
    5756
    5857    // TODO: class bad_cast, bad_typeid
Note: See TracChangeset for help on using the changeset viewer.