summaryrefslogtreecommitdiff
path: root/TAO/tests/IDL_Test/main.cpp
blob: 1528f78e6f5765ac6c431fb9a2dc7b840aab69e9 (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, char *[])
{
  ACE_DEBUG ((LM_DEBUG,
              "IDL_Test build completed without errors\n"
              "Check compiler output for warnings\n"));

  return 0;
}