Kaydet (Commit) 646448dd authored tarafından Mike Kaganski's avatar Mike Kaganski Kaydeden (comit) Stephan Bergmann

loplugin:includeform: document the requirements

See commits acb3ed06 and
189abcf0, and mail thread
<https://lists.freedesktop.org/archives/libreoffice/2017-October/078601.html>

Change-Id: I2eea0b0a13bfe7f2919f36c94e76796b6a8cf122
Reviewed-on: https://gerrit.libreoffice.org/43945Reviewed-by: 's avatarStephan Bergmann <sbergman@redhat.com>
Tested-by: 's avatarStephan Bergmann <sbergman@redhat.com>
üst be2729b4
...@@ -98,6 +98,16 @@ canvas/ | new (UNO) canvas rendering model with various backends ...@@ -98,6 +98,16 @@ canvas/ | new (UNO) canvas rendering model with various backends
cppcanvas/ | C++ helper classes for using the UNO canvas cppcanvas/ | C++ helper classes for using the UNO canvas
drawinglayer/ | View code to render drawable objects and break them down into primitives we can render more easily. drawinglayer/ | View code to render drawable objects and break them down into primitives we can render more easily.
## Rules for #include directives (C/C++)
Use the `"..."` form if and only if the included file is found next to the
including file. Otherwise, use the `<...>` form. (For further details, see the
mail [Re: C[++]: Normalizing include syntax ("" vs
<>)](https://lists.freedesktop.org/archives/libreoffice/2017-November/078778.html).)
The UNO API include files should consistently use double quotes, for the
benefit of external users of this API.
## Finding out more ## Finding out more
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment