fixed a ridiculous number of gcc warnings, nearly all of which were complaints about unused parameters - the remaining 199 warnings I get are from code that isn't ours (box2d is responsible for all but 8 of them)

This commit is contained in:
Bill Meltsner
2010-02-26 03:55:21 -05:00
parent dbf8301f24
commit 7c33786100
13 changed files with 153 additions and 142 deletions
+13 -13
View File
@@ -39,12 +39,12 @@ namespace null
return "love.audio.null";
}
love::audio::Source * Audio::newSource(love::sound::Decoder * decoder)
love::audio::Source * Audio::newSource(love::sound::Decoder *)
{
return new Source();
}
love::audio::Source * Audio::newSource(love::sound::SoundData * soundData)
love::audio::Source * Audio::newSource(love::sound::SoundData *)
{
return new Source();
}
@@ -59,7 +59,7 @@ namespace null
return 0;
}
void Audio::play(love::audio::Source * source)
void Audio::play(love::audio::Source *)
{
}
@@ -67,7 +67,7 @@ namespace null
{
}
void Audio::stop(love::audio::Source * source)
void Audio::stop(love::audio::Source *)
{
}
@@ -75,7 +75,7 @@ namespace null
{
}
void Audio::pause(love::audio::Source * source)
void Audio::pause(love::audio::Source *)
{
}
@@ -83,7 +83,7 @@ namespace null
{
}
void Audio::resume(love::audio::Source * source)
void Audio::resume(love::audio::Source *)
{
}
@@ -91,7 +91,7 @@ namespace null
{
}
void Audio::rewind(love::audio::Source * source)
void Audio::rewind(love::audio::Source *)
{
}
@@ -109,27 +109,27 @@ namespace null
return volume;
}
void Audio::getPosition(float * v) const
void Audio::getPosition(float *) const
{
}
void Audio::setPosition(float * v)
void Audio::setPosition(float *)
{
}
void Audio::getOrientation(float * v) const
void Audio::getOrientation(float *) const
{
}
void Audio::setOrientation(float * v)
void Audio::setOrientation(float *)
{
}
void Audio::getVelocity(float * v) const
void Audio::getVelocity(float *) const
{
}
void Audio::setVelocity(float * v)
void Audio::setVelocity(float *)
{
}
+32 -32
View File
@@ -1,21 +1,21 @@
/**
* Copyright (c) 2006-2010 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
/**
* Copyright (c) 2006-2010 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
**/
#ifndef LOVE_AUDIO_NULL_AUDIO_H
@@ -44,22 +44,22 @@ namespace null
// Implements Module.
const char * getName() const;
// Implements Audio.
// Implements Audio.
love::audio::Source * newSource(love::sound::Decoder * decoder);
love::audio::Source * newSource(love::sound::SoundData * soundData);
love::audio::Source * newSource(love::sound::SoundData * soundData);
int getNumSources() const;
int getMaxSources() const;
void play(love::audio::Source * source);
void play();
void stop(love::audio::Source * source);
void stop();
void pause(love::audio::Source * source);
void pause();
void resume(love::audio::Source * source);
void resume();
void rewind(love::audio::Source * source);
void rewind();
void setVolume(float volume);
int getMaxSources() const;
void play(love::audio::Source * source);
void play();
void stop(love::audio::Source * source);
void stop();
void pause(love::audio::Source * source);
void pause();
void resume(love::audio::Source * source);
void resume();
void rewind(love::audio::Source * source);
void rewind();
void setVolume(float volume);
float getVolume() const;
void getPosition(float * v) const;
+59 -59
View File
@@ -1,21 +1,21 @@
/**
* Copyright (c) 2006-2010 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
/**
* Copyright (c) 2006-2010 LOVE Development Team
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including commercial applications, and to alter it and redistribute it
* freely, subject to the following restrictions:
*
* 1. The origin of this software must not be misrepresented; you must not
* claim that you wrote the original software. If you use this software
* in a product, an acknowledgment in the product documentation would be
* appreciated but is not required.
* 2. Altered source versions must be plainly marked as such, and must not be
* misrepresented as being the original software.
* 3. This notice may not be removed or altered from any source distribution.
**/
#include "Source.h"
@@ -34,22 +34,22 @@ namespace null
Source::~Source()
{
}
love::audio::Source * Source::copy()
{
this->retain();
return this;
}
}
love::audio::Source * Source::copy()
{
this->retain();
return this;
}
void Source::play()
{
}
void Source::stop()
{
}
void Source::pause()
{
}
@@ -61,7 +61,7 @@ namespace null
void Source::rewind()
{
}
bool Source::isStopped() const
{
return true;
@@ -75,56 +75,56 @@ namespace null
void Source::update()
{
}
void Source::setPitch(float pitch)
{
this->pitch = pitch;
}
float Source::getPitch() const
{
return pitch;
}
void Source::setVolume(float volume)
{
this->volume = volume;
}
float Source::getVolume() const
{
return volume;
}
void Source::setPosition(float * v)
{
}
void Source::getPosition(float * v) const
{
}
void Source::setVelocity(float * v)
{
}
void Source::getVelocity(float * v) const
{
}
void Source::setDirection(float * v)
{
}
void Source::getDirection(float * v) const
void Source::setPosition(float *)
{
}
void Source::setLooping(bool looping)
{
this->looping = looping;
}
void Source::getPosition(float *) const
{
}
void Source::setVelocity(float *)
{
}
void Source::getVelocity(float *) const
{
}
void Source::setDirection(float *)
{
}
void Source::getDirection(float *) const
{
}
void Source::setLooping(bool looping)
{
this->looping = looping;
}
bool Source::isLooping() const
{
return looping;