Cześc, mam pewien problem. Otóz przeszedłem z Borland C++ Builder Personal na Dev C++ (i tak nie wykorzystywałem możliwości Borlanda) i teraz gdy kompiluję bardzo trywialny program ot taki np.:
#include<iostream.h>main(){ cout << "czesc"; return 0;}Kompilator wypluwa mi takie coś:
1 C:\Dev-Cpp\include\c++\3.4.2\backward\iostream.h:31, from C:\Documents and Settings\Jacek\Moje dokumenty\BezNazwy1.cpp In file included from C:/Dev-Cpp/include/c++/3.4.2/backward/iostream.h:31, from C:\Documents and Settings\Jacek\Moje dokumenty\BezNazwy1.cpp 1 C:\Documents and Settings\Jacek\Moje dokumenty\BezNazwy1.cpp from C:\Documents and Settings\Jacek\Moje dokumenty\BezNazwy1.cpp 32:2 C:\Dev-Cpp\include\c++\3.4.2\backward\backward_warning.h #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.Dodam, że na Borlandzie nie miałem żadnych problemów nawet z większymi projektami ;)
AA gdy piszę to samo w klasycznym C, czyli:
#include<stdio.h>main(){ printf("czesc"); return 0;}Nie ma żadnych problemów. Używam Dev-C++ w wersji 4.9.9.2 .
Co to może być, pomocy ;)
Pozdrawiam.