Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changes between Version 4 and Version 5 of code/PerformanceTips


Ignore:
Timestamp:
Aug 19, 2005, 12:22:32 PM (19 years ago)
Author:
patrick
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • code/PerformanceTips

    v4 v5  
    11= C++ Performance Tweaking Tips =
     2
     3== General Idea ==
     4It 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!'''
    25
    36== Inline Functions ==