Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Another attempt to remove space backslash define warning
  • Loading branch information
lisitsyn committed Jul 2, 2012
1 parent 6e1e928 commit 966c8d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shogun/io/AsciiFile.cpp
Expand Up @@ -318,7 +318,7 @@ void CAsciiFile::fname(SGSparseVector<sg_type>*& matrix, int32_t& num_feat, int3
blocksize=required_blocksize; \
dummy = SG_MALLOC(uint8_t, blocksize+1); /*allow setting of '\0' at EOL*/ \
matrix=SG_MALLOC(SGSparseVector<sg_type>, num_vec); \
for (int i=0; i<num_vec; i++) \
for (int i=0; i<num_vec; i++) \
new (&matrix[i]) SGSparseVector<sg_type>(); \
rewind(file); \
sz=blocksize; \
Expand Down

0 comments on commit 966c8d3

Please sign in to comment.