X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/56b79cb98da2e2e3024fce6f6313546577c34821..2d08140fdbb3aaab9457287b49e877ecf3b8b790:/samples/typetest/typetest.cpp diff --git a/samples/typetest/typetest.cpp b/samples/typetest/typetest.cpp index 3896668435..fd0c99b1e9 100644 --- a/samples/typetest/typetest.cpp +++ b/samples/typetest/typetest.cpp @@ -178,9 +178,12 @@ void MyApp::DoStreamDemo(wxCommandEvent& WXUNUSED(event)) tmp.Printf( _T("Float: %f\n"), f ); textCtrl.WriteText( tmp ); + // This doesn't compile (at least with VC++ 4) +#if 0 std_file_input >> str; tmp.Printf( _T("String: %s\n"), str.c_str() ); textCtrl.WriteText( tmp ); +#endif textCtrl.WriteText( "\nReading from wxFileInputStream:\n" );