|
From: Tapio V. <aa...@us...> - 2010-10-19 18:16:50
|
Module: performous
Branch: master
Commit: 5a9c3644a36bc76b7cdb82402ecbc3dc8bcf10d8
Author: Tapio Vierros <tap...@gm...>
Date: Tue Oct 19 21:16:18 2010 +0300
Fix a warning.
---
game/cache.hh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/game/cache.hh b/game/cache.hh
index 564cd8b..9121a54 100644
--- a/game/cache.hh
+++ b/game/cache.hh
@@ -22,7 +22,7 @@ namespace cache {
fs::path constructSVGCacheFileName(fs::path const& svgfilename, double factor);
/** Given a path to an SVG the caching policy is returned **/
- inline bool cachableSVGResource(fs::path const& svgfilename) {
+ inline bool cachableSVGResource(fs::path const& /*svgfilename*/ ) {
// FIXME: Currently all is cached, so should this be removed?
return true;
}
|