Remove todo!
comments (#8981)
Switching fully to normal `todo` style Release Notes: - N/A
This commit is contained in:
parent
8be4b4d75d
commit
8a92d28663
18 changed files with 86 additions and 86 deletions
|
@ -1,6 +1,6 @@
|
|||
// todo(linux): remove
|
||||
#![cfg_attr(target_os = "linux", allow(dead_code))]
|
||||
// todo("windows"): remove
|
||||
// todo(windows): remove
|
||||
#![cfg_attr(windows, allow(dead_code))]
|
||||
|
||||
mod app_menu;
|
||||
|
@ -68,7 +68,7 @@ pub(crate) fn current_platform() -> Rc<dyn Platform> {
|
|||
pub(crate) fn current_platform() -> Rc<dyn Platform> {
|
||||
Rc::new(LinuxPlatform::new())
|
||||
}
|
||||
// todo("windows")
|
||||
// todo(windows)
|
||||
#[cfg(target_os = "windows")]
|
||||
pub(crate) fn current_platform() -> Rc<dyn Platform> {
|
||||
Rc::new(WindowsPlatform::new())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue