diff options
author | Jan Segre <jan@segre.in> | 2016-05-23 03:17:31 -0300 |
---|---|---|
committer | Jan Segre <jan@segre.in> | 2016-05-23 03:17:31 -0300 |
commit | e0f36b80c9bf29bbf3306a617614f6913b705a10 (patch) | |
tree | f67c9d09ace81e83f6c2838569888e277aa9df32 /src/api/ios | |
parent | cf02e7f1f44eebaaee939b8267b9457094d9bc6b (diff) | |
download | glutin-e0f36b80c9bf29bbf3306a617614f6913b705a10.tar.gz glutin-e0f36b80c9bf29bbf3306a617614f6913b705a10.zip |
Make `WindowBuilder` and `HeadlessRendererBuilder` derive `Clone`.
Diffstat (limited to 'src/api/ios')
-rw-r--r-- | src/api/ios/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/ios/mod.rs b/src/api/ios/mod.rs index afcc6f4..8bee513 100644 --- a/src/api/ios/mod.rs +++ b/src/api/ios/mod.rs @@ -177,7 +177,7 @@ impl MonitorId { } } -#[derive(Default)] +#[derive(Clone, Default)] pub struct PlatformSpecificWindowBuilderAttributes; impl Window { |