aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-06 12:51:17 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-03-06 12:51:17 +0000
commit97f07f096843beec98c13063a2d561e017a4ce6b (patch)
tree17e5c29cca8c23055141991f23a9bd3c5288e7f9 /ChangeLog
parent18f4f0888513be990c164ecd5b3ea92e24570240 (diff)
downloadruby-97f07f096843beec98c13063a2d561e017a4ce6b.tar.gz
* sample/list.rb (MyElem#initialize): initialize @head
explicitely. Otherwise -W2 option makes following warning. "warning: instance variable @head not initialized". This issue was founded by Andrew Grimm. Thanks Andrew! [ruby-core:35435][Bug#4471] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 188122176b..4fad30bd82 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Sun Mar 6 21:49:04 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * sample/list.rb (MyElem#initialize): initialize @head
+ explicitely. Otherwise -W2 option makes following warning.
+ "warning: instance variable @head not initialized".
+ This issue was founded by Andrew Grimm. Thanks Andrew!
+ [ruby-core:35435][Bug#4471]
+
Sun Mar 6 05:21:41 2011 NARUSE, Yui <naruse@ruby-lang.org>
* class.c: fix camelCase to snake_case in documentation code examples.