Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Pryor <jpryor@novell.com>2005-04-30 00:29:24 +0400
committerJonathan Pryor <jpryor@novell.com>2005-04-30 00:29:24 +0400
commit58a030ec02d11348a83a2a9bf92610f9405a81f2 (patch)
tree3bdfd3997bdbe0f6b68d749400789fea2f75f1ae /mcs/class/Mono.Posix/Mono.Unix/ChangeLog
parentb26bfbb3afdb7e6f54cf7c028929b73c0bf3a109 (diff)
* Makefile: Ignore warnings 0219 (variable declared and never used) and
0618 (member is obsolete): this is test code, which produces lots of unused variables and tests [Obsolete] members. * Test/Mono.Unix/StdioFileStreamTest.cs: Add FilePosition tests; remove `var = var` lines (added to remove warnings, but now produces other warnings). * Mono.Unix/Stdlib.cs: Make FilePosition slightly more useful by providing a ToString() override which dumps the fpos_t structure contents into a hex string. Add Equals(), GetHashCode(), operator==, and operator!= so FilePosition behaves like a value type. svn path=/trunk/mcs/; revision=43804
Diffstat (limited to 'mcs/class/Mono.Posix/Mono.Unix/ChangeLog')
-rw-r--r--mcs/class/Mono.Posix/Mono.Unix/ChangeLog7
1 files changed, 7 insertions, 0 deletions
diff --git a/mcs/class/Mono.Posix/Mono.Unix/ChangeLog b/mcs/class/Mono.Posix/Mono.Unix/ChangeLog
index 481cce8820c..03723ca05e4 100644
--- a/mcs/class/Mono.Posix/Mono.Unix/ChangeLog
+++ b/mcs/class/Mono.Posix/Mono.Unix/ChangeLog
@@ -1,3 +1,10 @@
+2005-04-29 Jonathan Pryor <jonpryor@vt.edu>
+
+ * Stdlib.cs: Make FilePosition slightly more useful by providing a
+ ToString() override which dumps the fpos_t structure contents into a
+ hex string. Add Equals(), GetHashCode(), operator==, and operator!=
+ so FilePosition behaves like a value type.
+
2005-04-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* UnixClient.cs: