summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhys <rhys@13f79535-47bb-0310-9956-ffa450edef68>2014-02-12 03:39:05 +0000
committerrhys <rhys@13f79535-47bb-0310-9956-ffa450edef68>2014-02-12 03:39:05 +0000
commitce48c53d3d9b679476ba2ab3d70b87672da2f5f4 (patch)
tree1eb0a47802d33b9c16286cd853db7baf01be25ab
parente8e9866b34ef7c207bce6c43c98e00f9777698ff (diff)
downloadlog4cxx-ce48c53d3d9b679476ba2ab3d70b87672da2f5f4.tar.gz
LOG4CXX-305: undo initialize return change
Patch C applied as part of this issue changed the declared return type of the static initialize method without changing it in the implementation. Fixing. git-svn-id: http://svn.apache.org/repos/asf/incubator/log4cxx/trunk@1567513 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--src/main/include/log4cxx/helpers/aprinitializer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/include/log4cxx/helpers/aprinitializer.h b/src/main/include/log4cxx/helpers/aprinitializer.h
index 191605a..80d06c7 100644
--- a/src/main/include/log4cxx/helpers/aprinitializer.h
+++ b/src/main/include/log4cxx/helpers/aprinitializer.h
@@ -40,7 +40,7 @@ namespace log4cxx
class APRInitializer
{
public:
- static apr_time_t initialize();
+ static log4cxx_time_t initialize();
static apr_pool_t* getRootPool();
static apr_threadkey_t* getTlsKey();
static bool isDestructed;