UMLComputerGraphics / GraphicsProject

UML Graphics 2 Final Project 2013
7 stars 1 forks source link

ERRCHECK Monolith Error #92

Closed zmaybury closed 11 years ago

zmaybury commented 11 years ago

Never seen this before, can someone from the music group explain?

Classes/MONOLITH.cpp:283:5: error: use of undeclared identifier 'ERRCHECK' ERRCHECK(this->radio->setPaused(isPaused));

nickavv commented 11 years ago

should be soundHelper::ERRCHECK( void )

On Tue, May 7, 2013 at 1:00 PM, zmaybury notifications@github.com wrote:

Never seen this before, can someone from the music group explain?

Classes/MONOLITH.cpp:283:5: error: use of undeclared identifier 'ERRCHECK' ERRCHECK(this->radio->setPaused(isPaused));

— Reply to this email directly or view it on GitHubhttps://github.com/UMLComputerGraphics/GraphicsProject/issues/92 .

franckamayou commented 11 years ago

do a pull, I think we removed ERRCHECK on that line

franckamayou commented 11 years ago

or this->radio->setPaused(isPaused); soundHelper::ERRCHECK();

(not sure in which order @InspectorConstructor )

nickavv commented 11 years ago

That sounds right, try it

zmaybury commented 11 years ago

Works nice, thanks