1
0
Fork 0
mirror of https://github.com/KingDuckZ/kamokan.git synced 2024-11-23 00:33:44 +00:00

Fix warning on clang.

This commit is contained in:
King_DuckZ 2017-06-21 08:28:16 +01:00
parent 41df4dc7f2
commit 48ccb8eec5

View file

@ -38,7 +38,7 @@ namespace kamokan {
virtual void on_mustache_prepare (mstch::map& parContext) override final; virtual void on_mustache_prepare (mstch::map& parContext) override final;
virtual tawashi::HttpHeader on_general_pastie_process() = 0; virtual tawashi::HttpHeader on_general_pastie_process() = 0;
virtual void on_general_mustache_prepare (std::string&& parPastie, mstch::map& parContext) = 0; virtual void on_general_mustache_prepare (std::string&& parPastie, mstch::map& parContext) = 0;
std::string default_pastie_lang(); std::string default_pastie_lang() override;
Storage::RetrievedPastie m_pastie_info; Storage::RetrievedPastie m_pastie_info;
}; };