diff options
Diffstat (limited to 'src/content')
-rw-r--r-- | src/content/blog/Blog.cpp | 2 | ||||
-rw-r--r-- | src/content/blog/Blog.hpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/content/blog/Blog.cpp b/src/content/blog/Blog.cpp index 47a3292..a472b97 100644 --- a/src/content/blog/Blog.cpp +++ b/src/content/blog/Blog.cpp @@ -2,7 +2,7 @@ #include <filesystem> -Blog::Blog(std::string uriBasePath, std::string mainTemplatePath, std::string blogPath) +Blog::Blog(std::string uriBasePath, std::string blogPath, std::string mainTemplatePath) : Content(), m_UriBasePath(uriBasePath), m_MainTemplatePath(mainTemplatePath), diff --git a/src/content/blog/Blog.hpp b/src/content/blog/Blog.hpp index d58cd72..06f279c 100644 --- a/src/content/blog/Blog.hpp +++ b/src/content/blog/Blog.hpp @@ -32,7 +32,7 @@ using BlogEntries = std::vector<BlogEntry>; class Blog : public Content { public: - explicit Blog(std::string uriBasePath, std::string mainTemplatePath, std::string blogPath); + explicit Blog(std::string uriBasePath, std::string blogPath, std::string mainTemplatePath); bool Init(); void Shutdown(); |