Changes between Version 4 and Version 5 of code/PerformanceTips
- Timestamp:
- Aug 19, 2005, 12:22:32 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
code/PerformanceTips
v4 v5 1 1 = C++ Performance Tweaking Tips = 2 3 == General Idea == 4 It doesn't make sense to tweak every program code. Sometimes they are executed in time-uncritical sections of the program or they are executed only a few times. In these cases its nice to do some performance tweaking but it doesn't slow down the program to much if you don't. '''The more a certain part of code is executed, the more you will want to tweak it!''' 2 5 3 6 == Inline Functions ==