Skip to content

Commit c8f5cd4

Browse files
committed
Code cleanup
1 parent f8613cc commit c8f5cd4

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

src/bin2cpp/ArrayGenerator.cpp

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -209,33 +209,6 @@ namespace bin2cpp
209209
output += ",";
210210
output += "\n";
211211
return output;
212-
213-
//if ( !mContext.plainOutput )
214-
//{
215-
// // C/C++ code generation
216-
// static const size_t INDENTATION_SIZE = 8;
217-
// std::string output;
218-
// output += std::string(INDENTATION_SIZE, ' ');
219-
// output += ra::code::cpp::ToCppCharactersArray(buffer, buffer_size);
220-
// if ( !is_last_chunk )
221-
// output += ",";
222-
// output += "\n";
223-
// return output;
224-
//}
225-
226-
//if ( mContext.plainOutput )
227-
//{
228-
// // C/C++ declaration
229-
// std::string output;
230-
// if ( index > 0 )
231-
// output += "\"";
232-
// output += ra::code::cpp::ToCppCharactersArray(buffer, buffer_size);
233-
// if ( !is_last_chunk )
234-
// output += "\"\n";
235-
// return output;
236-
//}
237-
238-
return "";
239212
}
240213

241214
}; //bin2cpp

0 commit comments

Comments
 (0)