(file) Return to CodeReviewNotes.txt CVS log (file) (dir) Up to [Pegasus] / pegasus / doc / Attic

Diff for /pegasus/doc/Attic/CodeReviewNotes.txt between version 1.4 and 1.5

version 1.4, 2001/12/22 02:06:41 version 1.5, 2001/12/24 03:11:31
Line 28 
Line 28 
             "+++++ passed all tests"             "+++++ passed all tests"
  
         Extraneous output should be removed.         Extraneous output should be removed.
   
       7.  All defined constants must begin with "PEGASUS_".
   
       8.  All method must use the form myMethodName(). Many places
           have my_method_name() (with underscores).
   
       9.  Avoid use of (void). Use () instead.
   
       10. Either get rid of throw() declarations or use them
           everywhere (perhaps they are not supported by some compilers).
   
       11. Avoid indenting "private:", "public:" and "protected". Use this
           style:
   
               class X
               {
               private:
                   ...
               public:
               };
   
       12. Use "Type* x" rather than "Type *x".
   
       13. Use "if (" rather than "if(".
   
       14. Avoid use of spaces around the condition:
   
               if( cond )
   
       15. Changed "Permisyion" to "Permission"
   
       16. Keep all lines within 80 columns.


Legend:
Removed from v.1.4  
changed lines
  Added in v.1.5

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2