summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-26 10:50:07 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2013-06-26 10:50:07 -0400
commite2e198d9b36f4ef90ef7ca088e643b1fc399c53e (patch)
tree2ae853be91f7b500b37f95d45c7536d6e9f94df0
parentffd7b0d7e7ef13510d7299e601a71c7fedb0a4d1 (diff)
SH-4305 WIP - fix for compiler grumbling on linux build.
-rwxr-xr-xindra/newview/llappearancemgr.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/newview/llappearancemgr.cpp b/indra/newview/llappearancemgr.cpp
index f19500c98d..8a0814734c 100755
--- a/indra/newview/llappearancemgr.cpp
+++ b/indra/newview/llappearancemgr.cpp
@@ -1493,6 +1493,11 @@ void LLAppearanceMgr::copyCategoryLinks(const LLUUID& src_id, const LLUUID& dst_
}
break;
}
+ default:
+ {
+ // Linux refuses to compile unless all possible enums are handled. Really, Linux?
+ break;
+ }
}
}
slam_inventory_folder(dst_id, contents, cb);