diff options
| -rw-r--r-- | indra/newview/llappviewer.cpp | 1 | ||||
| -rw-r--r-- | indra/newview/llversioninfo.h | 3 | 
2 files changed, 4 insertions, 0 deletions
| diff --git a/indra/newview/llappviewer.cpp b/indra/newview/llappviewer.cpp index 10cd58476a..b6f705f21a 100644 --- a/indra/newview/llappviewer.cpp +++ b/indra/newview/llappviewer.cpp @@ -3356,6 +3356,7 @@ void LLAppViewer::writeSystemInfo()  	gDebugInfo["ClientInfo"]["MinorVersion"] = LLVersionInfo::getMinor();  	gDebugInfo["ClientInfo"]["PatchVersion"] = LLVersionInfo::getPatch();  	gDebugInfo["ClientInfo"]["BuildVersion"] = LLVersionInfo::getBuild(); +	gDebugInfo["ClientInfo"]["AddressSize"] = LLVersionInfo::getAddressSize();  	gDebugInfo["CAFilename"] = gDirUtilp->getCAFile(); diff --git a/indra/newview/llversioninfo.h b/indra/newview/llversioninfo.h index ec599c0cda..b8b4341385 100644 --- a/indra/newview/llversioninfo.h +++ b/indra/newview/llversioninfo.h @@ -72,6 +72,9 @@ public:  	/// reset the channel name used by the viewer.  	static void resetChannel(const std::string& channel); +    /// return the bit width of an address +    static const S32 getAddressSize() { return ADDRESS_SIZE; } +      typedef enum      {          TEST_VIEWER, | 
