Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 114628
Collapse All | Expand All

(-)src/eixTk/stringutils.cc (-1 / +1 lines)
Lines 137-147 Link Here
137
string
137
string
138
join_vector(vector<string> &vec, string glue)
138
join_vector(vector<string> &vec, string glue)
139
{
139
{
140
	string ret;
141
	vector<string>::iterator it = vec.begin();
140
	vector<string>::iterator it = vec.begin();
142
	if(it == vec.end()) {
141
	if(it == vec.end()) {
143
		return "";
142
		return "";
144
	}
143
	}
144
	string ret;
145
	for(;;) {
145
	for(;;) {
146
		ret.append(*it);
146
		ret.append(*it);
147
		if(++it == vec.end()) {
147
		if(++it == vec.end()) {

Return to bug 114628