Home | History | Annotate | Download | only in locale.codecvt
      1 //===----------------------------------------------------------------------===//
      2 //
      3 //                     The LLVM Compiler Infrastructure
      4 //
      5 // This file is dual licensed under the MIT and the University of Illinois Open
      6 // Source Licenses. See LICENSE.TXT for details.
      7 //
      8 //===----------------------------------------------------------------------===//
      9 
     10 // <locale>
     11 
     12 // class codecvt_base
     13 // {
     14 // public:
     15 //     enum result {ok, partial, error, noconv};
     16 // };
     17 
     18 #include <locale>
     19 #include <cassert>
     20 
     21 int main()
     22 {
     23     assert(std::codecvt_base::ok == 0);
     24     assert(std::codecvt_base::partial == 1);
     25     assert(std::codecvt_base::error == 2);
     26     assert(std::codecvt_base::noconv == 3);
     27 }
     28