remove superfluous type qualifier

This commit is contained in:
Fischlurch 2011-01-19 10:22:46 +01:00
parent 5418902442
commit c3d0fda495
2 changed files with 4 additions and 4 deletions

View file

@ -89,7 +89,7 @@ namespace proc {
{ }
const LumieraDisplayFrame
LumieraDisplayFrame
DummyImageGenerator::next()
{
@ -156,7 +156,7 @@ namespace proc {
}
const LumieraDisplayFrame
LumieraDisplayFrame
DummyImageGenerator::current()
{
if (!current_) return outFrame_A_;

View file

@ -69,11 +69,11 @@ namespace proc {
* occupy the alternate buffer.
* @return the buffer containing the new frame
*/
const LumieraDisplayFrame next();
LumieraDisplayFrame next();
/** just re-return a pointer to the current frame
* without generating any new image data */
const LumieraDisplayFrame current();
LumieraDisplayFrame current();
private: