mirror of
https://github.com/OlafvdSpek/ctemplate.git
synced 2025-09-28 19:05:49 +08:00
Annotalysis fix for ctemplate template_cache.
R=csilvers DELTA=3 (1 added, 0 deleted, 2 changed) Revision created by MOE tool push_codebase. MOE_MIGRATION=2804
This commit is contained in:
parent
3aed9df68d
commit
fd02964e99
|
@ -45,6 +45,7 @@
|
|||
@ac_google_start_namespace@
|
||||
class FileStat;
|
||||
@ac_google_end_namespace@
|
||||
class Mutex;
|
||||
class TemplateCacheUnittest;
|
||||
|
||||
@ac_windows_dllexport_defines@
|
||||
|
@ -355,8 +356,8 @@ class @ac_windows_dllexport@ TemplateCache {
|
|||
// (which they will probably get at via a call to ClearCache()).
|
||||
TemplateCallMap* get_template_calls_;
|
||||
|
||||
mutable class Mutex* mutex_;
|
||||
mutable class Mutex* search_path_mutex_;
|
||||
Mutex* const mutex_;
|
||||
Mutex* const search_path_mutex_;
|
||||
|
||||
// Can't invoke copy constructor or assignment operator
|
||||
TemplateCache(const TemplateCache&);
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
namespace ctemplate {
|
||||
class FileStat;
|
||||
}
|
||||
class Mutex;
|
||||
class TemplateCacheUnittest;
|
||||
|
||||
// NOTE: if you are statically linking the template library into your binary
|
||||
|
@ -365,8 +366,8 @@ class CTEMPLATE_DLL_DECL TemplateCache {
|
|||
// (which they will probably get at via a call to ClearCache()).
|
||||
TemplateCallMap* get_template_calls_;
|
||||
|
||||
mutable class Mutex* mutex_;
|
||||
mutable class Mutex* search_path_mutex_;
|
||||
Mutex* const mutex_;
|
||||
Mutex* const search_path_mutex_;
|
||||
|
||||
// Can't invoke copy constructor or assignment operator
|
||||
TemplateCache(const TemplateCache&);
|
||||
|
|
Loading…
Reference in New Issue
Block a user