Linux build fixes

This commit is contained in:
Jack Andersen
2017-11-12 21:19:49 -10:00
parent cb5d22eed6
commit 6950d96b46
8 changed files with 37 additions and 37 deletions

View File

@@ -130,7 +130,7 @@ struct WindowWayland : IWindow
return "";
}
void setTitle(const std::string& title)
void setTitle(std::string_view title)
{
}
@@ -244,7 +244,7 @@ struct WindowWayland : IWindow
};
std::shared_ptr<IWindow> _WindowWaylandNew(const std::string& title)
std::shared_ptr<IWindow> _WindowWaylandNew(std::string_view title)
{
return std::make_shared<WindowWayland>(title);
}