- Timestamp:
- Jul 9, 2009 4:24:17 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 49862
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/VBox-CodingGuidelines.cpp
r21440 r21449 116 116 * comments, only ANSI C comments! 117 117 * 118 * - Comments on \#else indicates what begins while the comment on a 119 * \#endif indicates what ended. 120 * 118 121 * 119 122 * (1) It is common practice on Unix to have a single symbol namespace for an … … 125 128 * __declspect(export) constructs are the main reason for this. 126 129 * OTOH, we do perhaps have a bit too detailed graining of this in VMM... 127 *128 130 * 129 131 * … … 198 200 * 199 201 * 200 *201 202 * @subsection sec_vbox_guideline_compulsory_cppmain C++ guidelines for Main 202 203 * … … 234 235 * - std::auto_ptr<> in general; that part of the C++ standard is just broken. 235 236 * Write a destructor that calls delete. 237 * 236 238 * 237 239 * … … 413 415 * Some of the warnings can seem kind of innocent at first glance. So, let's take the 414 416 * most common ones and explain them. 417 * 415 418 * 416 419 * @subsection sec_vbox_guideline_warnings_signed_unsigned_compare Signed / Unsigned Compare … … 437 440 * 438 441 * 442 * 439 443 * @section sec_vbox_guideline_svn Subversion Commit Rules 440 444 * … … 454 458 * - If you make a user visible change, such as fixing a reported bug, 455 459 * make sure you add an entry to doc/manual/user_ChangeLogImpl.xml. 460 * 461 * - If you are adding files make sure set the right attributes. 462 * svn-ps.sh/cmd was created for this purpose, please make use of it. 456 463 * 457 464 *
Note:
See TracChangeset
for help on using the changeset viewer.