Skip to content

Commit

Permalink
BLADERUNNER: No semicolon after namespace closing brace
Browse files Browse the repository at this point in the history
  • Loading branch information
madmoose authored and sev- committed Sep 29, 2016
1 parent 8217ed6 commit d260f99
Show file tree
Hide file tree
Showing 19 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion engines/bladerunner/aud_decoder.cpp
Expand Up @@ -164,4 +164,4 @@ void ADPCMWestwoodDecoder::decode(uint8 *in, size_t size, int16 *out)
_predictor = predictor;
}

};
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/bladerunner.h
Expand Up @@ -86,6 +86,6 @@ class BladeRunnerEngine : public Engine {
Common::SeekableReadStream *getResourceStream(const Common::String &name);
};

} // End of namespace Blade Runner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/chapters.h
Expand Up @@ -57,6 +57,6 @@ class Chapters {
int currentResouceId() { return _chapter ? _resourceIds[_chapter] : -1; }
};

}; // End of namespace BladeRunner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/decompress_lcw.cpp
Expand Up @@ -159,4 +159,4 @@ uint32 decompress_lcw_output_size(uint8 *inBuf, uint32 inLen) {
return outsize;
}

}; // End of namespace BladeRunner
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/decompress_lcw.h
Expand Up @@ -30,6 +30,6 @@ namespace BladeRunner {
uint32 decompress_lcw(uint8 *inBuf, uint32 inLen, uint8 *outBuf, uint32 outLen);
uint32 decompress_lcw_output_size(void *inBuf, uint32 inLen);

}; // End of namespace BladeRunner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/decompress_lzo.cpp
Expand Up @@ -140,4 +140,4 @@ int decompress_lzo1x(const uint8 *in, size_t inLen, uint8 *out, size_t *outLen)
return ip != ip_end;
}

}; // End of namespace BladeRunner
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/decompress_lzo.h
Expand Up @@ -29,6 +29,6 @@ namespace BladeRunner {

int decompress_lzo1x(const uint8 *in, size_t inLen, uint8 *out, size_t *outLen);

}; // End of namespace BladeRunner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/gameinfo.cpp
Expand Up @@ -109,4 +109,4 @@ bool GameInfo::open(const Common::String &name) {
return !s->err();
}

} // End of namespace Blade Runner
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/gameinfo.h
Expand Up @@ -77,6 +77,6 @@ class GameInfo {
char *getOuttake(int i) { return _outtakes[i]; }
};

} // End of namespace Blade Runner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/image.cpp
Expand Up @@ -75,4 +75,4 @@ void Image::copyToSurface(Graphics::Surface *dst) const {
dst->copyRectToSurface(_surface, 0, 0, Common::Rect(_surface.w, _surface.h));
}

}; // End of namespace BladeRunner
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/image.h
Expand Up @@ -42,6 +42,6 @@ class Image {
void copyToSurface(Graphics::Surface *surface) const;
};

}; // End of namespace BladeRunner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/outtake.cpp
Expand Up @@ -70,4 +70,4 @@ void OuttakePlayer::play(const Common::String &name, bool noLocalization, int co
}
}

}; // End of namespace BladeRunner
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/outtake.h
Expand Up @@ -49,6 +49,6 @@ class OuttakePlayer {
void play(const Common::String &name, bool noLocalization, int container);
};

}; // End of namespace BladeRunner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/settings.cpp
Expand Up @@ -96,4 +96,4 @@ bool Settings::openNewScene() {
return true;
}

} // End of namespace Blade Runner
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/settings.h
Expand Up @@ -89,6 +89,6 @@ class Settings {
bool openNewScene();
};

} // End of namespace Blade Runner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/vqa_decoder.cpp
Expand Up @@ -934,4 +934,4 @@ bool VQADecoder::VQAAudioTrack::readSN2J(Common::SeekableReadStream *s, uint32 s
return true;
}

}; // End of namespace BladeRunner
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/vqa_decoder.h
Expand Up @@ -215,6 +215,6 @@ class VQADecoder
};
};

}; // End of namespace BladeRunner
} // End of namespace BladeRunner

#endif
2 changes: 1 addition & 1 deletion engines/bladerunner/vqa_player.cpp
Expand Up @@ -129,4 +129,4 @@ void VQAPlayer::queueAudioFrame(Audio::AudioStream *audioStream) {
_audioStream->queueAudioStream(audioStream, DisposeAfterUse::YES);
}

}; // End of namespace BladeRunner
} // End of namespace BladeRunner
2 changes: 1 addition & 1 deletion engines/bladerunner/vqa_player.h
Expand Up @@ -85,6 +85,6 @@ class VQAPlayer {
void queueAudioFrame(Audio::AudioStream *audioStream);
};

}; // End of namespace BladeRunner
} // End of namespace BladeRunner

#endif

0 comments on commit d260f99

Please sign in to comment.