几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量

几何尺寸与公差论坛------致力于产品几何量公差标准GD&T (GDT:ASME)|New GPS(ISO)研究/CAD设计/CAM加工/CMM测量 (http://www.dimcax.com/hust/index.php)
-   DirectDWG (http://www.dimcax.com/hust/forumdisplay.php?f=89)
-   -   【转帖】odansistring and linu (http://www.dimcax.com/hust/showthread.php?t=17424)

yang686526 2009-05-06 07:07 PM

【转帖】odansistring and linu
 
odansistring and linux
odansistring and linux
with the way odansistring is implemented you cannot have the "=" operator on the same line as the definition when using gcc 3.3 (and probably other versions). so you cannot do:
odansistring astr = str;
you have to do:
odansistring astr;
astr = str;
note: not a bug, just a warning.
what is "str"?
what compiler says?
vladimir
str is usually a odstring in my case, but it could be another odansistring.
the message is:
error: conversion from 'odstring' to non-scalar type 'odansistring' requested.
you may probably fix it by changing one constructor signature for ansistring:
code:
odansistring(const odstring& , odcodepageid);
change to:
code:
odansistring(const odstring& , odcodepageid = cp_cnt);
vladimir


所有的时间均为北京时间。 现在的时间是 08:27 PM.