mirror of
https://github.com/pantor/inja.git
synced 2026-03-22 17:02:44 +00:00
make renderer private in env
This commit is contained in:
@@ -865,11 +865,9 @@ class Environment {
|
||||
const std::string output_path;
|
||||
|
||||
Parser parser = Parser();
|
||||
|
||||
public:
|
||||
Renderer renderer = Renderer();
|
||||
|
||||
|
||||
public:
|
||||
Environment(): Environment("./") { }
|
||||
explicit Environment(const std::string& global_path): input_path(global_path), output_path(global_path), parser() { }
|
||||
explicit Environment(const std::string& input_path, const std::string& output_path): input_path(input_path), output_path(output_path), parser() { }
|
||||
|
||||
Reference in New Issue
Block a user