#BUGFIX by sr
authorsr
Fri, 15 Sep 2017 17:02:22 +0200
changeset 22258 4f711d284370
parent 22257 9ce7e373cf91
child 22259 60b47f522c85
#BUGFIX by sr class: LongFloat added: #byteAt: #byteAt:put:
LongFloat.st
--- a/LongFloat.st	Fri Sep 15 15:25:57 2017 +0200
+++ b/LongFloat.st	Fri Sep 15 17:02:22 2017 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1999 by eXept Software AG
 	      All Rights Reserved
@@ -1957,6 +1959,14 @@
 
     RETURN (__mkSmallInteger(sizeof(LONGFLOAT)));
 %}.
+!
+
+byteAt:index
+    ^ self basicAt:index
+!
+
+byteAt:index put:newByte
+    self shouldNotImplement
 ! !
 
 !LongFloat methodsFor:'special access'!