1
0
mirror of https://github.com/OlafvdSpek/ctemplate.git synced 2025-10-05 19:16:54 +08:00

Remove ac_google_start_namespace

This commit is contained in:
olafvdspek 2015-02-13 20:00:56 +00:00
parent dc38561f56
commit fdf31135e3
14 changed files with 14 additions and 14 deletions

View File

@ -35,7 +35,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
template <class T, class U>
typename T::value_type::second_type* find_ptr(T& c, U v)

View File

@ -50,7 +50,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
class TemplateModifier;
class TemplateAnnotator;

View File

@ -37,7 +37,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
template <class T>
class str_ref_basic

View File

@ -63,7 +63,7 @@ class HtmlParser;
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
// These free functions form the "simple" template API, and support
// the most common operations (expanding a template from a file, and

View File

@ -56,7 +56,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
class ExpandEmitter;

View File

@ -50,7 +50,7 @@ class TemplateCacheUnittest;
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
class PerExpandData;
class Template;

View File

@ -69,7 +69,7 @@ template<typename A, int B, typename C, typename D> class small_map;
template<typename NormalMap> class small_map_default_init; // in small_map.h
}
@ac_google_start_namespace@
namespace ctemplate {
class @ac_windows_dllexport@ TemplateDictionary : public TemplateDictionaryInterface {

View File

@ -48,7 +48,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
const int kIndent = 2; // num spaces to indent each level -- used with dump

View File

@ -42,7 +42,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
class @ac_windows_dllexport@ ExpandEmitter {
public:

View File

@ -35,7 +35,7 @@
#ifndef TEMPLATE_TEMPLATE_ENUMS_H_
#define TEMPLATE_TEMPLATE_ENUMS_H_
@ac_google_start_namespace@
namespace ctemplate {
// Enums for GetTemplate flag values
enum Strip { DO_NOT_STRIP, STRIP_BLANK_LINES, STRIP_WHITESPACE,

View File

@ -70,7 +70,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
class Template;

View File

@ -48,7 +48,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
// RegisterTemplateFilename
// Used to define a reference variable for the name of a template file. E.g:

View File

@ -37,7 +37,7 @@
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
extern @ac_windows_dllexport@
const char kCWD[]; // a string that's equivalent to "./"

View File

@ -57,7 +57,7 @@ extern char data_start[] __attribute__((weak)); // start of .data
@ac_windows_dllexport_defines@
@ac_google_start_namespace@
namespace ctemplate {
// Most methods of TemplateDictionary take a TemplateString rather than a
// C++ string. This is for efficiency: it can avoid extra string copies.