From 08b9a07c6d966aafd1784a4bd066e641611a9cde Mon Sep 17 00:00:00 2001 From: Florian Pose Date: Tue, 11 Oct 2011 14:06:07 +0200 Subject: [PATCH] Minor: Added missing comma. --- tool/DataTypeHandler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool/DataTypeHandler.cpp b/tool/DataTypeHandler.cpp index 357279f4..34d57919 100644 --- a/tool/DataTypeHandler.cpp +++ b/tool/DataTypeHandler.cpp @@ -1,6 +1,6 @@ /***************************************************************************** * - * $Id$ + * $Id: DataTypeHandler.cpp,v 9a136c0c30a2 2010/04/15 10:33:48 fp $ * * Copyright (C) 2006-2009 Florian Pose, Ingenieurgemeinschaft IgH * @@ -74,7 +74,7 @@ string DataTypeHandler::typeInfo() << " bool," << endl << " int8, int16, int32, int64," << endl << " uint8, uint16, uint32, uint64," << endl - << " float, double" << endl + << " float, double," << endl << " string, octet_string, unicode_string." << endl << "For sign-and-magnitude coding, use the following types:" << endl << " sm8, sm16, sm32, sm64" << endl;