Skip to content

Commit

Permalink
Comment out problematic code. Closes tidyverse#865
Browse files Browse the repository at this point in the history
  • Loading branch information
hadley committed Jan 5, 2015
1 parent 1ccc63b commit d2b7265
Show file tree
Hide file tree
Showing 3 changed files with 174 additions and 175 deletions.
12 changes: 6 additions & 6 deletions inst/include/dplyr/JoinVisitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
#define dplyr_JoinVisitor_H

namespace dplyr{

class JoinVisitor{
public:
virtual ~JoinVisitor(){}

virtual size_t hash(int i) = 0 ;
virtual bool equal(int i, int j) = 0 ;

virtual SEXP subset( const std::vector<int>& indices ) = 0;
virtual SEXP subset( const VisitorSetIndexSet<DataFrameJoinVisitors>& set ) = 0;

virtual void print(int i) = 0 ;
virtual void debug() {}

// virtual void debug() {}
} ;

}
Expand Down
Loading

0 comments on commit d2b7265

Please sign in to comment.