Skip to content

Commit 2e17e39

Browse files
committed
remove unused FunctionMap class
1 parent 7d70d3e commit 2e17e39

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

src/attributes.cpp

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -304,18 +304,6 @@ namespace attributes {
304304
std::vector<std::string> roxygen_;
305305
};
306306

307-
class FunctionMap {
308-
std::map< std::string, std::vector<Function> > map_ ;
309-
310-
public:
311-
FunctionMap(){};
312-
~FunctionMap(){} ;
313-
314-
void insert( const Function& fun ){
315-
map_[ fun.name() ].push_back( fun ) ;
316-
}
317-
} ;
318-
319307
// Operator << for parsed types
320308
std::ostream& operator<<(std::ostream& os, const Type& type);
321309
std::ostream& operator<<(std::ostream& os, const Argument& argument);

0 commit comments

Comments
 (0)