diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-08-11 17:20:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-08-11 21:09:55 +0200 |
commit | 5262ec68f36216cdca9be87b3b2e126d724b69c5 (patch) | |
tree | 02cc33c8e0b86db9bc57c0ce152bab5321c0be68 /idlc/source | |
parent | 12ea892df9ca1691c406b4c98f996456e3b69307 (diff) |
set copy_paste_error to false rather than intentional
Change-Id: I152482ef594c286d3c2a94cab62feff49bbf79fa
Reviewed-on: https://gerrit.libreoffice.org/58884
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'idlc/source')
-rw-r--r-- | idlc/source/parser.y | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idlc/source/parser.y b/idlc/source/parser.y index cb5f3ec470e3..71b88d05c816 100644 --- a/idlc/source/parser.y +++ b/idlc/source/parser.y @@ -2115,7 +2115,7 @@ at_least_one_scoped_name : } else { std::list< OString >* pScopedNames = new std::list< OString >; - // coverity[copy_paste_error] - this is not a cut and paste + // coverity[copy_paste_error : FALSE] - this is not a cut and paste pScopedNames->push_back(*$1); $$ = pScopedNames; } |