Commit 83596ee8 authored by Khalique's avatar Khalique
Browse files

fixed naming scheme

parent 24b39d3e
...@@ -616,11 +616,11 @@ struct pad ...@@ -616,11 +616,11 @@ struct pad
float value = 0.0f; float value = 0.0f;
enum padding_mode_t enum padding_mode_t
{ {
constant_, // NOLINT constant_pad,
reflect_, // NOLINT reflect_pad, // NOLINT
edge edge_pad
}; };
padding_mode_t mode = constant_; padding_mode_t mode = constant_pad;
template <class Self, class F> template <class Self, class F>
static auto reflect(Self& self, F f) static auto reflect(Self& self, F f)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment