This rule is Obsolete | |
Synopsis: | When accessing global identifiers, use :: |
Language: | C++ |
Severity Level: | 8 |
Category: | Style |
Description: |
When accessing global identifiers, use of :: is obligatory. So API function CreateProcess() must not be called like: CreateProcess(...); but as ::CreateProcess(...); |