Skip to content

Commit 29c0a37

Browse files
committed
clang-format - republish dev binaries for 4.5.9-dev2 [republish binary]
1 parent 8ec0f85 commit 29c0a37

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

src/mapnik_image_encode.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ struct AsyncEncode : Napi::AsyncWorker
5656
{
5757
using Base = Napi::AsyncWorker;
5858
// ctor
59-
AsyncEncode(Image * obj, image_ptr image, palette_ptr palette, std::string const& format, Napi::Function const& callback)
59+
AsyncEncode(Image* obj, image_ptr image, palette_ptr palette, std::string const& format, Napi::Function const& callback)
6060
: Base(callback),
6161
obj_(obj),
6262
image_(image),
@@ -111,7 +111,7 @@ struct AsyncEncode : Napi::AsyncWorker
111111
}
112112

113113
private:
114-
Image * obj_;
114+
Image* obj_;
115115
image_ptr image_;
116116
palette_ptr palette_;
117117
std::string format_;

src/mapnik_image_view.cpp

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -268,13 +268,14 @@ struct AsyncEncode : Napi::AsyncWorker
268268
{
269269
using Base = Napi::AsyncWorker;
270270
// ctor
271-
AsyncEncode(ImageView * obj, image_view_ptr image_view, palette_ptr palette, std::string const& format, Napi::Function const& callback)
271+
AsyncEncode(ImageView* obj, image_view_ptr image_view, palette_ptr palette, std::string const& format, Napi::Function const& callback)
272272
: Base(callback),
273273
obj_(obj),
274274
image_view_(image_view),
275275
palette_(palette),
276276
format_(format)
277-
{}
277+
{
278+
}
278279
~AsyncEncode() {}
279280
void OnWorkComplete(Napi::Env env, napi_status status) override
280281
{
@@ -320,8 +321,9 @@ struct AsyncEncode : Napi::AsyncWorker
320321
}
321322
return Base::GetResult(env);
322323
}
324+
323325
private:
324-
ImageView * obj_;
326+
ImageView* obj_;
325327
image_view_ptr image_view_;
326328
palette_ptr palette_;
327329
std::string format_;

0 commit comments

Comments
 (0)