c++ - Qt QPainterpath.h errors -


i working on qt application many #include files qt library. project quite large , have encountered strange problem when building. errors displayed inside qpainterpath.h file, has nothing calls project. errors this:

c:\qt\4.8.4\include\qtgui../../src/gui/painting/qpainterpath.h(397) : error c2143: syntax error : missing ';' before '::'

c:\qt\4.8.4\include\qtgui../../src/gui/painting/qpainterpath.h(397) : error c2059: syntax error : '::'

c:\qt\4.8.4\include\qtgui../../src/gui/painting/qpainterpath.h(398) : error c2143: syntax error : missing ';' before '{'

c:\qt\4.8.4\include\qtgui../../src/gui/painting/qpainterpath.h(398) : error c2447: '{' : missing function header (old-style formal list?)

c:\qt\4.8.4\include\qtgui../../src/gui/painting/qpainterpath.h(405) : warning c4003: not enough actual parameters macro 'elementcount'

i encountered once before , able solve moving qt #include statements called before other class headers below them. can't seem figure out in particular causing time though. thoughts great!

thanks!

i've seen happen when forget close class definition semicolon. if @ output compiler, , see file compiled right before error started, may have answer. syntax errors missing ; or } or missing } @ end of compiled file.

it .h file listed above #include <qpainter> call has errors.

hope helps.


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -