Skip to content

Commit 8641c29

Browse files
committed
Update 07-Considering_Threadability.md
1 parent 9180af5 commit 8641c29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

07-Considering_Threadability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Global data leads to unintended side effects between functions and can make code
66

77
### Statics
88

9-
Besides being global data, statics are not always constructed and deconstructed as you would expect. This is particularly true in cross-platform environments. See for example, [this g++ bug](9https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66830) regarding the order of destruction of shared static data loaded from dynamic modules.
9+
Besides being global data, statics are not always constructed and deconstructed as you would expect. This is particularly true in cross-platform environments. See for example, [this g++ bug](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66830) regarding the order of destruction of shared static data loaded from dynamic modules.
1010

1111
### Shared Pointers
1212

0 commit comments

Comments
 (0)