mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 10:08:56 +01:00 
			
		
		
		
	2001-05-29 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * tests/Makefile.am, tests/cxx-test.C: Now that we check for a C++ compiler in configure.in anyway, I added a test, that the GLib headers can be inclued into a C++ program. This fixes bug #52605.
		
			
				
	
	
		
			10 lines
		
	
	
		
			93 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			93 B
		
	
	
	
		
			C
		
	
	
	
	
	
#include <glib.h>
 | 
						|
#include <gmodule.h>
 | 
						|
#include <glib-object.h>
 | 
						|
 | 
						|
int
 | 
						|
main ()
 | 
						|
{
 | 
						|
  return 0;
 | 
						|
}
 |