summaryrefslogtreecommitdiff
path: root/benchmarks/parsetostruct.proto2_table.cc
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/parsetostruct.proto2_table.cc')
-rw-r--r--benchmarks/parsetostruct.proto2_table.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmarks/parsetostruct.proto2_table.cc b/benchmarks/parsetostruct.proto2_table.cc
index ded267d..49a5b16 100644
--- a/benchmarks/parsetostruct.proto2_table.cc
+++ b/benchmarks/parsetostruct.proto2_table.cc
@@ -12,7 +12,7 @@ static google::protobuf::Message *msg[NUM_MESSAGES];
static bool initialize()
{
- /* Read the message data itself. */
+ // Read the message data itself.
std::ifstream stream(MESSAGE_FILE);
if(!stream.is_open()) {
fprintf(stderr, "Error opening " MESSAGE_FILE ".\n");
@@ -22,7 +22,7 @@ static bool initialize()
stringstream << stream.rdbuf();
str = stringstream.str();
- /* Create the DynamicMessage. */
+ // Create the DynamicMessage.
const google::protobuf::Message *dynamic_msg_prototype =
factory.GetPrototype(MESSAGE_CIDENT::descriptor());
for(int i = 0; i < NUM_MESSAGES; i++)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback