blob: 0a9177107b60dde52f8a1669c3f021135a16672c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/IDL_Test
//
// = FILENAME
// main.cpp
//
// = DESCRIPTION
// This test isn't for functionality, but only for IDL compiler
// and C++ compiler errors and warnings
//
// = AUTHORS
// Jeff Parsons <parsons@cs.wustl.edu>
//
// ============================================================================
#include "ace/Log_Msg.h"
int
main (int argc, char *argv[])
{
ACE_DEBUG ((LM_DEBUG,
"IDL_Test build completed without errors\n"
"Check compiler output for warnings\n"));
return 0;
}
|