File: test_wxstl.cpp

package info (click to toggle)
freespace2-launcher-wxlauncher 0.11.0%2Bdfsg-3
  • links: PTS, VCS
  • area: contrib
  • in suites: bullseye
  • size: 2,368 kB
  • sloc: cpp: 13,446; python: 797; makefile: 12; sh: 12
file content (12 lines) | stat: -rw-r--r-- 165 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
#include <wx/wx.h>

#ifndef wxUSE_STL
#error wxUSE_STL not defined
#elif wxUSE_STL == 0
#error wxUSE_STL is not enabled
#endif

int main(int, char**)
{
	return 0;
}