diff options
| author | Steven Fuller <relnev@icculus.org> | 2001-07-01 00:55:22 +0000 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:09:04 +0200 |
| commit | 2186d5f3f95cd74a070a490d899291648d58667a (patch) | |
| tree | 55241a1afa3e1a22e0b6593a8dead0b703800f44 /src/win95/list_tem.cpp | |
| parent | 218ca90543758a20ac326e444ca0643174ca7384 (diff) | |
Initial revision
Diffstat (limited to 'src/win95/list_tem.cpp')
| -rw-r--r-- | src/win95/list_tem.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/win95/list_tem.cpp b/src/win95/list_tem.cpp new file mode 100644 index 0000000..08ead10 --- /dev/null +++ b/src/win95/list_tem.cpp @@ -0,0 +1,28 @@ +#ifdef NDEBUG +; +#else + +char const * list_fail_get_data_from_sentinel = "%s: Tried to get data from sentinel\n"; +char const * list_fail_add_entry_after = "%s: Tried to add after a nonexistent List entry\n"; +char const * list_fail_add_entry_before = "%s: Tried to add before a nonexistent List entry\n"; +char const * list_fail_delete_entry = "%s: Tried to delete a nonexistent List entry\n"; +char const * list_fail_delete_entry_by_pointer = "%s: Tried to delete-by-pointer the sentinel of a list.\n"; +char const * list_fail_alter_entry = "%s: Tried to alter a nonexistent List entry\n"; +char const * list_fail_next_entry_nonexist = "%s: Tried to get entry after nonexistent entry."; +char const * list_fail_next_entry_sentinel = "%s: Tried to get next entry, which is sentinel."; +char const * list_fail_prev_entry_nonexist = "%s: Tried to get entry before nonexistent entry"; +char const * list_fail_prev_entry_sentinel = "%s: Tried to get previous entry, which is sentinel."; +char const * list_fail_last_entry = "%s: Tried to get last entry from a 0-length list.\n."; +char const * list_fail_first_entry = "%s: Tried to get first entry from a 0-length list.\n."; +char const * list_fail_similar_entry = "%s: Tried to get entry similar to nonexistent entry"; +char const * list_fail_delete_last_entry = "%s: Tried to delete last element from an empty List.\n"; +char const * list_fail_delete_first_entry = "%s: Tried to delete first element from an empty List.\n"; +char const * list_fail_operator = "%s: Tried to get entry %d from %d-entry list.\n"; +char const * lit_fail_next = "%s: Tried to take an Iterator past the sentinel of a List.\n"; +char const * lit_fail_operator = "%s: Tried to take contents of sentinel of List\n"; +char const * lit_fail_delete_current = "%s: Tried to delete sentinel of List\n"; +char const * lit_fail_change_current = "%s: Tried to change contents of sentinel of List\n"; + +#endif + + |
