Added std:: infront of cout instances.
This commit is contained in:
parent
aaa761e333
commit
8350eda616
@ -140,7 +140,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
if (!tcmExt->isCubeMapSupported())
|
||||
{
|
||||
cout<<"Warning: texture_cube_map not supported by OpenGL drivers, unable to run application."<<std::endl;
|
||||
std::cout<<"Warning: texture_cube_map not supported by OpenGL drivers, unable to run application."<<std::endl;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
@ -110,7 +110,7 @@ int main( int argc, char **argv )
|
||||
{
|
||||
if (!textExt->isMultiTexturingSupported())
|
||||
{
|
||||
cout<<"Warning: texture_cube_map not supported by OpenGL drivers, unable to run application."<<std::endl;
|
||||
std::cout<<"Warning: texture_cube_map not supported by OpenGL drivers, unable to run application."<<std::endl;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
@ -415,7 +415,7 @@ int main(int argc, char *argv[])
|
||||
{
|
||||
if (!vpExt->isVertexProgramSupported())
|
||||
{
|
||||
cout<<"Warning: ARB_vertex_program not supported by OpenGL drivers, unable to run application."<<std::endl;
|
||||
std::cout<<"Warning: ARB_vertex_program not supported by OpenGL drivers, unable to run application."<<std::endl;
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user