]> granicus.if.org Git - re2c/commitdiff
Removed unused function.
authorUlya Trofimovich <skvadrik@gmail.com>
Fri, 26 Jun 2015 13:01:56 +0000 (14:01 +0100)
committerUlya Trofimovich <skvadrik@gmail.com>
Fri, 26 Jun 2015 13:01:56 +0000 (14:01 +0100)
re2c/src/codegen/go.h
re2c/src/codegen/go_emit.cc

index 6bc8a245f0d3d7d65cec57a342ce88439c2da3d6..57c29e8bc6d1b2577973c4ecf9e2ab46c7f50f8c 100644 (file)
@@ -20,7 +20,6 @@ struct Span
 {
        uint32_t ub;
        State * to;
-       uint32_t show (std::ostream&, uint32_t) const;
 
        FORBID_COPY (Span);
 };
index 9c5d33c64ed5b4ad9280ac8d25b20636bc34dd2c..ebd9e56cfc5c2c0774e116d8e27bec9a04c7eec7 100644 (file)
@@ -59,22 +59,6 @@ std::string output_hgo (OutputFile & o, uint32_t ind, bool & readCh, SwitchIf *
        return yych;
 }
 
-uint32_t Span::show (std::ostream & o, uint32_t lb) const
-{
-       printSpan(o, lb, ub);
-       o << " ";
-       if (to)
-       {
-               o << to->label;
-       }
-       else
-       {
-               o << "(nil)";
-       }
-       o << "; ";
-       return ub;
-}
-
 void Case::emit (OutputFile & o, uint32_t ind)
 {
        for (uint32_t i = 0; i < ranges.size (); ++i)