Skip to content

Commit

Permalink
Undo change to SGVector<char>::display_vector.
Browse files Browse the repository at this point in the history
  • Loading branch information
Thoralf Klein committed Jul 25, 2013
1 parent da8857a commit 254bfd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shogun/lib/SGVector.cpp
Expand Up @@ -402,7 +402,7 @@ void SGVector<char>::display_vector(const char* vector, int32_t n, const char* n
ASSERT(n>=0)
SG_SPRINT("%s%s=[", prefix, name)
for (int32_t i=0; i<n; i++)
SG_SPRINT("%s%d%s", prefix, vector[i], i==n-1? "" : ",")
SG_SPRINT("%s%c%s", prefix, vector[i], i==n-1? "" : ",")
SG_SPRINT("%s]\n", prefix)
}

Expand Down

0 comments on commit 254bfd6

Please sign in to comment.