Fixed error visitor due to recent signature changes

This commit is contained in:
Jocelyn Fiat
2012-02-15 11:33:39 +01:00
parent 9138ffedfb
commit 413fdaf6cd
3 changed files with 24 additions and 4 deletions

View File

@@ -31,7 +31,7 @@ feature -- Access
feature -- Output
output_string (a_str: detachable STRING_GENERAL)
output_string (a_str: detachable READABLE_STRING_GENERAL)
-- Output Unicode string
do
if a_str /= Void then
@@ -50,4 +50,14 @@ feature -- Output
file.put_new_line
end
note
copyright: "2011-2012, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software
5949 Hollister Ave., Goleta, CA 93117 USA
Telephone 805-685-1006, Fax 805-685-6869
Website http://www.eiffel.com
Customer support http://support.eiffel.com
]"
end

View File

@@ -13,7 +13,7 @@ inherit
feature -- Output
output_string (a_str: detachable STRING_GENERAL)
output_string (a_str: detachable READABLE_STRING_GENERAL)
-- Output Unicode string
deferred
end
@@ -21,7 +21,7 @@ feature -- Output
output_any (obj: detachable ANY)
-- Output Unicode string
do
if attached {STRING_GENERAL} obj as l_str then
if attached {READABLE_STRING_GENERAL} obj as l_str then
to_implement ("Convert into UTF-8 or console encoding before output")
output_string (l_str)
elseif obj /= Void then

View File

@@ -31,7 +31,7 @@ feature -- Access
feature -- Output
output_string (a_str: detachable STRING_GENERAL)
output_string (a_str: detachable READABLE_STRING_GENERAL)
-- Output Unicode string
do
if a_str /= Void then
@@ -50,4 +50,14 @@ feature -- Output
buffer.append_character ('%N')
end
note
copyright: "2011-2012, Eiffel Software and others"
license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)"
source: "[
Eiffel Software
5949 Hollister Ave., Goleta, CA 93117 USA
Telephone 805-685-1006, Fax 805-685-6869
Website http://www.eiffel.com
Customer support http://support.eiffel.com
]"
end