فهرست منبع

Amend a couple of comments to clarify code

Signed-off-by: Gavin Halliday <gavin.halliday@lexisnexis.com>
Gavin Halliday 13 سال پیش
والد
کامیت
4106390d32
1فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 2 1
      ecl/hqlcpp/hqlcpp.cpp

+ 2 - 1
ecl/hqlcpp/hqlcpp.cpp

@@ -7125,6 +7125,7 @@ void HqlCppTranslator::processCppBodyDirectives(IHqlExpression * expr)
             _ATOM name = cur->queryName();
             if (name == linkAtom)
             {
+                //MORE: Add code to add the argument to the linker options.
             }
             else if (name == libraryAtom)
             {
@@ -11271,7 +11272,7 @@ void HqlCppTranslator::buildFunctionDefinition(IHqlExpression * funcdef)
 
         StringBuffer text;
         cppBody->queryValue()->getStringValue(text);
-        //remove #option and /r so we don't end up with mixed format end of lines.
+        //remove #option, and remove /r so we don't end up with mixed format end of lines.
         text.setLength(cleanupEmbeddedCpp(text.length(), (char*)text.str()));
 
         const char * start = text.str();