From: Fred Morcos Date: Wed, 3 Aug 2022 11:32:54 +0000 (+0200) Subject: Formatting X-Git-Tag: rec-4.8.0-alpha1~40^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=61c42950cd1b885d9329ebc6836f120444302fec;p=thirdparty%2Fpdns.git Formatting --- diff --git a/pdns/lua-base4.hh b/pdns/lua-base4.hh index 1dbf62eecb..20b0159716 100644 --- a/pdns/lua-base4.hh +++ b/pdns/lua-base4.hh @@ -13,16 +13,16 @@ protected: public: BaseLua4(); - void loadFile(const std::string &fname); - void loadString(const std::string &script); - void loadStream(std::istream &is); + void loadFile(const std::string& fname); + void loadString(const std::string& script); + void loadStream(std::istream& is); virtual ~BaseLua4(); // this is so unique_ptr works with an incomplete type protected: void prepareContext(); virtual void postPrepareContext() = 0; virtual void postLoad() = 0; - typedef vector > in_t; - vector > > d_pd; - typedef vector > > Features; + typedef vector> in_t; + vector>> d_pd; + typedef vector>> Features; virtual void getFeatures(Features&); };