summaryrefslogtreecommitdiff
path: root/CIAO/CCF/CCF/CompilerElements/Introspection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/CCF/CCF/CompilerElements/Introspection.cpp')
-rw-r--r--CIAO/CCF/CCF/CompilerElements/Introspection.cpp26
1 files changed, 0 insertions, 26 deletions
diff --git a/CIAO/CCF/CCF/CompilerElements/Introspection.cpp b/CIAO/CCF/CCF/CompilerElements/Introspection.cpp
deleted file mode 100644
index 9e625e0272a..00000000000
--- a/CIAO/CCF/CCF/CompilerElements/Introspection.cpp
+++ /dev/null
@@ -1,26 +0,0 @@
-// file : CCF/CompilerElements/Introspection.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-//
-// This is a hack to avoid link dependency on Utility library.
-//
-
-#include "Utility/Introspection/Object.hpp"
-
-namespace Utility
-{
- namespace Introspection
- {
- namespace
- {
- TypeInfo object_ (typeid (Object));
- }
-
- TypeInfo const& Object::
- static_type_info () throw ()
- {
- return object_;
- }
- }
-}