summaryrefslogtreecommitdiff
path: root/ACE/tests/Compiler_Features_20_DLL.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/tests/Compiler_Features_20_DLL.h')
-rw-r--r--ACE/tests/Compiler_Features_20_DLL.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/ACE/tests/Compiler_Features_20_DLL.h b/ACE/tests/Compiler_Features_20_DLL.h
deleted file mode 100644
index a749abb240b..00000000000
--- a/ACE/tests/Compiler_Features_20_DLL.h
+++ /dev/null
@@ -1,30 +0,0 @@
-
-//=============================================================================
-/**
- * @file Compiler_Features_20_DLL.h
- *
- * $Id$
- *
- * Test DLL export with default constructor
- */
-//=============================================================================
-
-
-#ifndef ACE_TESTS_COMPILER_FEATURES_20_DLL_H
-#define ACE_TESTS_COMPILER_FEATURES_20_DLL_H
-
-#include "test_config.h"
-
-#if defined (ACE_HAS_CPP11)
-
-#include "Compiler_Features_20_DLL_Export.h"
-
-class COMPILER_FEATURES_20_DLL_Export UtcT
-{
-public:
- ~UtcT (void) = default;
-};
-
-#endif
-
-#endif /* ACE_TESTS_COMPILER_FEATURES_20_DLL_H */