diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-01-10 08:33:27 +0100 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-01-10 08:33:27 +0100 |
commit | f72b09bcb7efee96b05dbcfc34b4a5fd72ef37aa (patch) | |
tree | eb5d69fa2deb0326a4dc43bddb1f4ff6be8c4051 /examples/window.rs | |
parent | 9d7dbf7eb039d5614976a184082163bc97a319c6 (diff) | |
parent | 469d0eafd1704d5e9a172adfc673708fc76923e9 (diff) | |
download | glutin-f72b09bcb7efee96b05dbcfc34b4a5fd72ef37aa.tar.gz glutin-f72b09bcb7efee96b05dbcfc34b4a5fd72ef37aa.zip |
Merge pull request #190 from tomaka/update-rustc
Update for rust alpha 1.0
Diffstat (limited to 'examples/window.rs')
-rw-r--r-- | examples/window.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/window.rs b/examples/window.rs index 9cb59c8..11ab737 100644 --- a/examples/window.rs +++ b/examples/window.rs @@ -30,6 +30,6 @@ fn main() { context.draw_frame((0.0, 1.0, 0.0, 1.0)); window.swap_buffers(); - println!("{}", window.wait_events().collect::<Vec<glutin::Event>>()); + println!("{:?}", window.wait_events().collect::<Vec<glutin::Event>>()); } } |