[g4a72c7d] compiler error - excessive semicolon

Forum rules
Please don't bump threads here if you have a problem - it will often be forgotten about if you do. Instead, make a new thread here.

Post a reply

Smilies
:D :) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :wink: :geek: :ugeek: :!: :?: :idea: :arrow: :| :mrgreen: :3: :wub: >:( :blergh:
View more smilies

BBCode is OFF
Smilies are ON

Topic review
   

Expand view Topic review: [g4a72c7d] compiler error - excessive semicolon

Re: [g4a72c7d] compiler error - excessive semicolon

by Edward-san » Fri Apr 29, 2016 2:31 pm

I'm personally not in a hurry for that (I don't compile gzdoom often), I reminded that for the sake of the other people who're going to complain for the compilation failure. :P

Re: [g4a72c7d] compiler error - excessive semicolon

by Major Cooke » Fri Apr 29, 2016 1:36 pm

Ed, you have your own setup compilation right?

Image

Re: [g4a72c7d] compiler error - excessive semicolon

by Graf Zahl » Fri Apr 29, 2016 12:57 pm

It has to wait, I can't commit right now.

Re: [g4a72c7d] compiler error - excessive semicolon

by Edward-san » Fri Apr 29, 2016 12:44 pm

Graf, don't forget to merge the compile fix commit in gzdoom ASAP!

Re: [g4a72c7d] compiler error - excessive semicolon

by Edward-san » Fri Apr 29, 2016 5:41 am

Major Cooke wrote:I sure as hell don't know how that slipped in. I compiled AND tested it just before submitting.
It has nothing to do with your changes. See this part of graf's decal fix.

Re: [g4a72c7d] compiler error - excessive semicolon

by Major Cooke » Fri Apr 29, 2016 5:32 am

EDIT: Oh, I see it wasn't mine. Okay.
Fixed.

[g4a72c7d] compiler error - excessive semicolon

by Edward-san » Fri Apr 29, 2016 5:25 am

From src/g_shared/a_quake.cpp:

Code: Select all

		<< m_Falloff << m_Highpoint << m_MiniCount;
		<< m_RollIntensity << m_RollWave;
the semicolon near 'm_MiniCount' was not removed, making the compilation fail:

Code: Select all

/home/edward-san/zdoom/trunk/src/g_shared/a_quake.cpp:75:3: error: expected
      expression
                << m_RollIntensity << m_RollWave;
                ^

Top