removed a now unused constructor

This commit is contained in:
Anonymissimus 2011-05-08 21:47:44 +00:00
parent 2c496c1658
commit d12ff31985
2 changed files with 0 additions and 7 deletions

View file

@ -52,12 +52,6 @@ side_filter::side_filter(const vconfig& cfg, bool flat_tod) :
{
}
side_filter::side_filter(const vconfig &cfg, const std::string &side_string, bool flat_tod)
: cfg_(cfg), flat_(flat_tod), side_string_(side_string)
{
}
side_filter::side_filter(const std::string &side_string, bool flat_tod)
: cfg_(vconfig::empty_vconfig()), flat_(flat_tod), side_string_(side_string)
{

View file

@ -36,7 +36,6 @@ public:
side_filter();
#endif
side_filter(const vconfig &cfg, const std::string &side_string, bool flat_tod = false);
side_filter(const std::string &side_string, bool flat_tod = false);
side_filter(const vconfig &cfg, bool flat_tod = false);