]> git.saurik.com Git - apple/security.git/blobdiff - libsecurity_codesigning/antlr2/src/NoViableAltForCharException.cpp
Security-57031.1.35.tar.gz
[apple/security.git] / libsecurity_codesigning / antlr2 / src / NoViableAltForCharException.cpp
diff --git a/libsecurity_codesigning/antlr2/src/NoViableAltForCharException.cpp b/libsecurity_codesigning/antlr2/src/NoViableAltForCharException.cpp
deleted file mode 100644 (file)
index 0b2cf2d..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-/* ANTLR Translator Generator
- * Project led by Terence Parr at http://www.jGuru.com
- * Software rights: http://www.antlr.org/license.html
- *
- * $Id: //depot/code/org.antlr/release/antlr-2.7.7/lib/cpp/src/NoViableAltForCharException.cpp#2 $
- */
-
-#include "antlr/NoViableAltForCharException.hpp"
-#include "antlr/String.hpp"
-
-#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
-namespace antlr {
-#endif
-
-NoViableAltForCharException::NoViableAltForCharException(int c, CharScanner* scanner)
-  : RecognitionException("NoViableAlt",
-                         scanner->getFilename(),
-                                                                scanner->getLine(),scanner->getColumn()),
-    foundChar(c)
-{
-}
-
-NoViableAltForCharException::NoViableAltForCharException(
-                                       int c,
-               const ANTLR_USE_NAMESPACE(std)string& fileName_,
-                                       int line_, int column_)
-  : RecognitionException("NoViableAlt",fileName_,line_,column_),
-    foundChar(c)
-{
-}
-
-ANTLR_USE_NAMESPACE(std)string NoViableAltForCharException::getMessage() const
-{
-       return ANTLR_USE_NAMESPACE(std)string("unexpected char: ")+charName(foundChar);
-}
-
-#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
-}
-#endif