diff options
| author | Furkan Sahin <furkan-dev@proton.me> | 2017-01-01 12:36:47 -0500 |
|---|---|---|
| committer | Furkan Sahin <furkan-dev@proton.me> | 2017-01-01 12:36:47 -0500 |
| commit | 215a17a55769aeda22c50ccf6d9525ea9d508715 (patch) | |
| tree | ee797ee90b9567a46577094b26468ddbc6dbef0b /include | |
| parent | 049de6fe2851bb03408941df179c0a8ed7d6f296 (diff) | |
Fix inline is_auto_layout
Diffstat (limited to 'include')
| -rw-r--r-- | include/sway/layout.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/sway/layout.h b/include/sway/layout.h index a771a72e..d7fe748d 100644 --- a/include/sway/layout.h +++ b/include/sway/layout.h @@ -75,7 +75,6 @@ void swayc_log(log_importance_t verbosity, swayc_t *cont, const char* format, .. */ enum swayc_layouts default_layout(swayc_t *output); -inline bool is_auto_layout(enum swayc_layouts layout) { - return (layout >= L_AUTO_FIRST) && (layout <= L_AUTO_LAST); -} +bool is_auto_layout(enum swayc_layouts layout); + #endif |
