Author: mturk Date: Wed Apr 15 18:52:00 2009 New Revision: 765304 URL: http://svn.apache.org/viewvc?rev=765304&view=rev Log: Compile in only if --enable-test was specified
Modified: commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c Modified: commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c?rev=765304&r1=765303&r2=765304&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c (original) +++ commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c Wed Apr 15 18:52:00 2009 @@ -79,6 +79,8 @@ return c; } +#ifdef ACR_ENABLE_TEST +/* Just for testing the cache table */ int acr_clazz_cache_size() { int i; @@ -90,3 +92,4 @@ } return i; } +#endif