Skip to content

Commit 55dbe68

Browse files
committed
Some update.
1 parent 1c7ff62 commit 55dbe68

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src_basic/Temp_common.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,12 @@ std::string StringStdVectorGAP(std::vector<T> const &V) {
197197
return os.str();
198198
}
199199

200-
200+
template <typename T>
201+
std::string StringStdVectorPYTHON(std::vector<T> const &V) {
202+
std::ostringstream os;
203+
WriteStdVectorPYTHON(os, V);
204+
return os.str();
205+
}
201206

202207
template <typename T>
203208
std::istream &operator>>(std::istream &is, std::vector<T> &obj) {

0 commit comments

Comments
 (0)