Skip to content
Snippets Groups Projects
Commit d9d33bb8 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

erase unneeded friend declaration (RegExpOptimize)

parent 81e27360
No related branches found
No related tags found
No related merge requests found
......@@ -13,12 +13,6 @@
 
namespace regexp {
 
namespace simplify {
class RegExpOptimize;
} /* namespace simplify */
/**
* Represents alternation operator in the regular expression. Contains list of UnboundedRegExpElement
* as operands of the operator.
......@@ -90,8 +84,6 @@ public:
*/
virtual void operator >>( std::ostream & out ) const;
 
friend class simplify::RegExpOptimize;
virtual explicit operator std::string ( ) const;
};
 
......
......@@ -13,12 +13,6 @@
 
namespace regexp {
 
namespace simplify {
class RegExpOptimize;
} /* namespace simplify */
/**
* Represents concatenation operator in the regular expression. Contains list of UnboundedRegExpElement
* as operands of the operator.
......@@ -90,8 +84,6 @@ public:
*/
virtual void operator >>( std::ostream & out ) const;
 
friend class simplify::RegExpOptimize;
virtual explicit operator std::string ( ) const;
};
 
......
......@@ -13,12 +13,6 @@
 
namespace regexp {
 
namespace simplify {
class RegExpOptimize;
} /* namespace simplify */
/**
* Represents iteration operator in the regular expression. Contains one UnboundedRegExpElement
* as operand.
......@@ -91,8 +85,6 @@ public:
*/
virtual void operator >>( std::ostream & out ) const;
 
friend class simplify::RegExpOptimize;
virtual explicit operator std::string ( ) const;
};
 
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment