Changeset 05922b3b in mainline


Ignore:
Timestamp:
2018-07-05T21:41:19Z (6 years ago)
Author:
Dzejrou <dzejrou@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9cb221b
Parents:
eb69df4
git-author:
Dzejrou <dzejrou@…> (2017-12-04 15:57:12)
git-committer:
Dzejrou <dzejrou@…> (2018-07-05 21:41:19)
Message:

cpp: fixed goodbit value

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/cpp/include/impl/ios.hpp

    reb69df4 r05922b3b  
    3131
    3232#include <cstdlib>
     33#include <internal/locale.hpp>
     34#include <internal/locale/ctype.hpp>
    3335#include <iosfwd>
    34 #include <locale>
    3536#include <system_error>
    3637#include <utility>
     
    9596            static constexpr iostate eofbit  = 0b0010;
    9697            static constexpr iostate failbit = 0b0100;
    97             static constexpr iostate goodbit = 0b1000;
     98            static constexpr iostate goodbit = 0b0000;
    9899
    99100            /**
     
    129130
    130131                private:
    131                     static int init_cnt;
     132                    static int init_cnt_;
    132133            };
    133134
     
    194195            ios_base();
    195196
    196         private:
    197197            static int index_;
    198198            static bool sync_;
     
    210210            streamsize precision_;
    211211            streamsize width_;
     212
    212213            locale locale_;
    213214
Note: See TracChangeset for help on using the changeset viewer.