HTCondor Project List Archives



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Condor-devel] CODING_GUIDELINES



Here are two new guidelines everyone should be aware of:

- If you find yourself using types that might not be in the C/++
  standard, such as long long, you should look for a typedef
  equivalent, such as int64_t and uint64_t.

- If you are writing code that depends on an external be sure your
  code is wrapped in a pre-processor check for HAVE_EXT_<name>, where
  <name> is the name of the external you depend on.