diff options
Diffstat (limited to 'src/server/CompiledGraph.hpp')
-rw-r--r-- | src/server/CompiledGraph.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/CompiledGraph.hpp b/src/server/CompiledGraph.hpp index 8642866a..8c2bb815 100644 --- a/src/server/CompiledGraph.hpp +++ b/src/server/CompiledGraph.hpp @@ -40,16 +40,16 @@ class RunContext; * execute the nodes in order and have nodes always executed before any of * their dependencies. */ -class CompiledGraph : public Raul::Maid::Disposable - , public Raul::Noncopyable +class CompiledGraph : public raul::Maid::Disposable + , public raul::Noncopyable { public: - static Raul::managed_ptr<CompiledGraph> compile(Raul::Maid& maid, GraphImpl& graph); + static raul::managed_ptr<CompiledGraph> compile(raul::Maid& maid, GraphImpl& graph); void run(RunContext& ctx); private: - friend class Raul::Maid; ///< Allow make_managed to construct + friend class raul::Maid; ///< Allow make_managed to construct CompiledGraph(GraphImpl* graph); @@ -73,8 +73,8 @@ private: std::unique_ptr<Task> _master; }; -inline Raul::managed_ptr<CompiledGraph> -compile(Raul::Maid& maid, GraphImpl& graph) +inline raul::managed_ptr<CompiledGraph> +compile(raul::Maid& maid, GraphImpl& graph) { return CompiledGraph::compile(maid, graph); } |