diff options
Diffstat (limited to 'subversion/svn/cl-log.h')
-rw-r--r-- | subversion/svn/cl-log.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/subversion/svn/cl-log.h b/subversion/svn/cl-log.h index 5b4c7aa7a68b5..e2d5646351a60 100644 --- a/subversion/svn/cl-log.h +++ b/subversion/svn/cl-log.h @@ -31,6 +31,8 @@ #include "svn_types.h" +#include "private/svn_string_private.h" + #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ @@ -70,6 +72,9 @@ typedef struct svn_cl__log_receiver_baton * the log message, or a changed path matches one of these patterns. */ apr_array_header_t *search_patterns; + /* Buffer for Unicode normalization and case folding. */ + svn_membuf_t buffer; + /* Pool for persistent allocations. */ apr_pool_t *pool; } svn_cl__log_receiver_baton; |