summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.cpp')
-rw-r--r--TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.cpp25
1 files changed, 0 insertions, 25 deletions
diff --git a/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.cpp b/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.cpp
deleted file mode 100644
index 7d7e5e3137b..00000000000
--- a/TAO/CIAO/CCF/CCF/IDL2/SemanticGraph/Literals.cpp
+++ /dev/null
@@ -1,25 +0,0 @@
-// file : CCF/IDL2/SemanticGraph/Literals.cpp
-// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
-// cvs-id : $Id$
-
-#include "CCF/IDL2/SemanticGraph/Literals.hpp"
-
-#include <ostream>
-
-namespace CCF
-{
- namespace IDL2
- {
- namespace SemanticGraph
- {
- // StringLiteral
- //
- //
- std::ostream&
- operator<< (std::ostream& o, StringLiteral const& lit)
- {
- return o << '\"' << lit.literal () << '\"';
- }
- }
- }
-}