Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 11, 2008, 4:40:01 PM (16 years ago)
Author:
rgrieder
Message:

gcc test commit again

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core3/src/orxonox/Orxonox.cc

    r1766 r1768  
    8989    static bool convert(orxonox::Radian* output, const char* input)
    9090    {
     91        //std::string asdf("asfd");
     92        //std::cout << asdf;
    9193        float temp;
    9294        convertValue(&temp, input);
     
    9496    }
    9597};
     98
     99class FooBar { };
    96100
    97101
     
    217221    //convertValue(&str, 4.0f);
    218222
    219 
    220     using ::operator<<;
     223    //using ::operator<<;
    221224    using std::string;
    222225    int a = 3;
    223     Radian asdf;
    224     COUT(3) << asdf;
     226    FooBar asdf;
     227    std::string asdf2;
     228    std::cout << asdf2;
     229    ConvertValue(&asdf2, asdf);
     230    //COUT(3) << asdf;
    225231
    226232    TestConv(1, int, (3), float, 3.0);
     
    232238    TestConv(7, const char*, ("4.3"), float, 4.3f);
    233239    TestConv(8, const char*, ("4,3"), Vector2, Vector2(4,3));
    234     TestConv(9, const char*, ("4.4"), Radian, Radian(4.4));
     240    //TestConv(9, const char*, ("4.4"), Radian, Radian(4.4));
    235241    TestConv(100, int, (3), const char*, "3");
    236242    TestConv(101, Vector3, (1, 2, 3), float, 3.0);
Note: See TracChangeset for help on using the changeset viewer.