1 // Take a look at the license at the top of the repository in the LICENSE file.
2 
3 use crate::ApplicationFlags;
4 
5 impl Default for ApplicationFlags {
default() -> Self6     fn default() -> Self {
7         Self::empty()
8     }
9 }
10