From 56f4fb3d5505b08eda369af2dea61724766a4fa2 Mon Sep 17 00:00:00 2001 From: Siana Gearz Date: Sat, 26 Feb 2011 22:08:31 +0100 Subject: [PATCH] GCCified that --- indra/llcommon/llassettype.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/indra/llcommon/llassettype.cpp b/indra/llcommon/llassettype.cpp index 5be74c036..f9c73a20a 100644 --- a/indra/llcommon/llassettype.cpp +++ b/indra/llcommon/llassettype.cpp @@ -357,8 +357,9 @@ bool LLAssetType::lookupIsAssetFetchByIDAllowed(EType asset_type) case LLAssetType::AT_ANIMATION: case LLAssetType::AT_GESTURE: return true; + default: + return false; } - return false; } // static @@ -377,7 +378,8 @@ bool LLAssetType::lookupIsAssetIDKnowable(EType asset_type) case LLAssetType::AT_LINK: case LLAssetType::AT_LINK_FOLDER: return true; + default: + return false; } - return false; }