summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/formats/c4040_dsk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/formats/c4040_dsk.cpp')
-rw-r--r--src/lib/formats/c4040_dsk.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/formats/c4040_dsk.cpp b/src/lib/formats/c4040_dsk.cpp
index 65f1dded2c7..ac5adf7e1c9 100644
--- a/src/lib/formats/c4040_dsk.cpp
+++ b/src/lib/formats/c4040_dsk.cpp
@@ -2,7 +2,7 @@
// copyright-holders:Curt Coder
/*********************************************************************
- formats/c4040_dsk.c
+ formats/c4040_dsk.cpp
Commodore 4040 sector disk image format
@@ -14,17 +14,17 @@ c4040_format::c4040_format() : d64_format(file_formats)
{
}
-const char *c4040_format::name() const
+const char *c4040_format::name() const noexcept
{
return "c4040";
}
-const char *c4040_format::description() const
+const char *c4040_format::description() const noexcept
{
return "Commodore 4040 disk image";
}
-const char *c4040_format::extensions() const
+const char *c4040_format::extensions() const noexcept
{
return "d64";
}