Difference between revisions of "User:Saijanai Kuhn/Mono issues"

From Second Life Wiki
Jump to navigation Jump to search
Line 8: Line 8:
{| class="wikitable sortable" border= "1"
{| class="wikitable sortable" border= "1"
!Wiki Number
!Wiki Number
!Title
!First line of debug message
!First line of debug message
!Description
!Description
!link
 
|-
|-
|SVC-1 || Yo || Yikes!|| [[SVC-1]]
|[[SVC-1344]] ||MONO Beta Grid Crashes || n/a || Running the attached script under mono crashes the sim 100% Have not isolated the offending function yet.
|-
|-
|SVC-2 || Ho || Ouch|| [[SVC-2]]
|[[SVC-1342]] || Mono: Boolean AND (&&) and Boolean OR (||) were incorrectly mapped to the bitwise operators. || n/a || The && and || operators (Boolean AND and Boolean OR respectively) have been mapped to the bitwise operators. This can result in code that does not work properly when the operands are not pure booleans. What is the point in having separate operators if they do the same thing.
|}
|}

Revision as of 19:28, 30 January 2008

Example of what I mean

Something like this could allow users to easily see if their bug has already been found:



Wiki Number Title First line of debug message Description
SVC-1344 MONO Beta Grid Crashes n/a Running the attached script under mono crashes the sim 100% Have not isolated the offending function yet.
SVC-1342 Mono: Boolean AND (&&) and Boolean OR (||) were incorrectly mapped to the bitwise operators. n/a The && and || operators (Boolean AND and Boolean OR respectively) have been mapped to the bitwise operators. This can result in code that does not work properly when the operands are not pure booleans. What is the point in having separate operators if they do the same thing.