From 26e2f9e6298164d054e1bb9d9c822309147109c9 Mon Sep 17 00:00:00 2001 From: Wilson Snyder Date: Fri, 6 Jan 2023 07:34:24 -0500 Subject: [PATCH] Commentary: Remove unintended text --- docs/guide/copyright.rst | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/docs/guide/copyright.rst b/docs/guide/copyright.rst index 2839bddc7..2eba06d51 100644 --- a/docs/guide/copyright.rst +++ b/docs/guide/copyright.rst @@ -17,21 +17,3 @@ All Verilog and C++/SystemC code quoted within this documentation file is released as Creative Commons Public Domain (CC0). Many example files and test files are likewise released under CC0 into effectively the Public Domain as described in the files themselves. - - Warns that the lifetime of a task or a function was not provided and so - was implicitly set to static. The warning is suppressed when no - variables inside the task or a function are assigned to. - - This is a warning because the static default differs from C++, differs - from class member function/tasks. Static is a more dangerous default - then automatic as static prevents the function from being reinterant, - which may be a source of bugs, and/or performance issues. - - If the function does not require static behavior, change it to "function - automatic". - - If the function requires static behavior, change it to "function - static". - - Ignoring this warning will only suppress the lint check; it will - simulate correctly.