reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
647 template <class T, class... Args> T *New(Args &&... args) { 648 static_assert(std::is_base_of<Piece, T>::value, "must be piece"); 649 T *Mem = new T(std::forward<Args>(args)...); 649 T *Mem = new T(std::forward<Args>(args)...); 900 void VisitPlaceholder(PlaceholderPiece *P) { 939 void VisitPlaceholder(PlaceholderPiece *P) { 1133 Parsed.push_back(New<PlaceholderPiece>(ModType, parseModifier(Text)));