Skip to content

Commit

Permalink
Fix windows includes
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed Sep 30, 2023
1 parent 733d85a commit 23bb24f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ta/ui/window/window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ auto WindowPimpl::updateCanvasSize() -> void
} // namespace detail

Window::Window(char const* name, int width, int height)
: _impl{makeUnique<detail::WindowPimpl>(*this, name, width, height)}
: _impl{std::make_unique<detail::WindowPimpl>(*this, name, width, height)}
{}

Window::~Window() = default;
Expand Down

0 comments on commit 23bb24f

Please sign in to comment.