Home | History | Annotate | Download | only in Lex

Lines Matching defs:CopyStr

553   char *CopyStr = Alloc.Allocate<char>(Str.size()+1);
554 std::copy(Str.begin(), Str.end(), CopyStr);
555 CopyStr[Str.size()] = '\0';
556 return CopyStr;