mirror of
https://github.com/pantor/inja.git
synced 2026-02-17 09:03:58 +00:00
make environment config protected members, resolves #285
This commit is contained in:
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -64,9 +64,9 @@ jobs:
|
||||
os: macOS-13
|
||||
compiler: clang
|
||||
|
||||
- name: macOS-14-clang
|
||||
os: macOS-14
|
||||
compiler: clang
|
||||
# - name: macOS-14-clang
|
||||
# os: macOS-14
|
||||
# compiler: clang
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
@@ -20,14 +20,14 @@ namespace inja {
|
||||
* \brief Class for changing the configuration.
|
||||
*/
|
||||
class Environment {
|
||||
LexerConfig lexer_config;
|
||||
ParserConfig parser_config;
|
||||
RenderConfig render_config;
|
||||
|
||||
FunctionStorage function_storage;
|
||||
TemplateStorage template_storage;
|
||||
|
||||
protected:
|
||||
LexerConfig lexer_config;
|
||||
ParserConfig parser_config;
|
||||
RenderConfig render_config;
|
||||
|
||||
std::string input_path;
|
||||
std::string output_path;
|
||||
|
||||
|
||||
@@ -2771,14 +2771,14 @@ namespace inja {
|
||||
* \brief Class for changing the configuration.
|
||||
*/
|
||||
class Environment {
|
||||
LexerConfig lexer_config;
|
||||
ParserConfig parser_config;
|
||||
RenderConfig render_config;
|
||||
|
||||
FunctionStorage function_storage;
|
||||
TemplateStorage template_storage;
|
||||
|
||||
protected:
|
||||
LexerConfig lexer_config;
|
||||
ParserConfig parser_config;
|
||||
RenderConfig render_config;
|
||||
|
||||
std::string input_path;
|
||||
std::string output_path;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user