Rename parameter to avoid ambiguous parameter

-- Issue#335
This commit is contained in:
Crzyrndm 2018-09-15 19:50:59 +12:00
parent ab81bcaf08
commit ed05bfeb44

View File

@ -343,9 +343,9 @@ std::string to_string(pane_state state)
default_case("frozen");
}
std::string to_string(orientation orientation)
std::string to_string(orientation orient)
{
switch (orientation)
switch (orient)
{
case orientation::default_orientation:
return "default";