aboutsummaryrefslogtreecommitdiffstats
path: root/common/pywrappers.h
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2020-07-25 10:17:13 +0200
committerMiodrag Milanovic <mmicko@gmail.com>2020-07-25 10:17:13 +0200
commitfe398ab983aee9283f61c288dc98d94542c30332 (patch)
tree3349c93ac87f5758009c53b3e2eb5b9a130cd0d6 /common/pywrappers.h
parentbb6e6a15f1f1a061f4b59c3eddd3430d57681c6d (diff)
downloadnextpnr-fe398ab983aee9283f61c288dc98d94542c30332.tar.gz
nextpnr-fe398ab983aee9283f61c288dc98d94542c30332.tar.bz2
nextpnr-fe398ab983aee9283f61c288dc98d94542c30332.zip
clangformat
Diffstat (limited to 'common/pywrappers.h')
-rw-r--r--common/pywrappers.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/pywrappers.h b/common/pywrappers.h
index bb94120c..a864d8cf 100644
--- a/common/pywrappers.h
+++ b/common/pywrappers.h
@@ -262,7 +262,8 @@ template <typename Class, typename FuncT, FuncT fn, typename arg1_conv> struct f
template <typename WrapCls> static void def_wrap(WrapCls cls_, const char *name) { cls_.def(name, wrapped_fn); }
- template <typename WrapCls, typename Ta> static void def_wrap(WrapCls cls_, const char *name, Ta a = py::arg("arg1"))
+ template <typename WrapCls, typename Ta>
+ static void def_wrap(WrapCls cls_, const char *name, Ta a = py::arg("arg1"))
{
cls_.def(name, wrapped_fn, a);
}