Changes in src/AST/Fwd.hpp [733074e:17a0228a]
- File:
-
- 1 edited
-
src/AST/Fwd.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Fwd.hpp
r733074e r17a0228a 15 15 16 16 #pragma once 17 18 #include <string> 17 19 18 20 #include "AST/Node.hpp" … … 131 133 class TypeSubstitution; 132 134 135 std::string toString( const Node * ); 136 137 template < typename ... Params > 138 std::string toString( const Params & ... params ) { 139 #warning not implemented 140 return ""; 141 } 142 133 143 typedef unsigned int UniqueId; 134 144
Note:
See TracChangeset
for help on using the changeset viewer.