Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
atlas
athena
Merge requests
!36776
DataQualityInterfaces: Fix ubsan warnings.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
DataQualityInterfaces: Fix ubsan warnings.
ssnyder/athena:ubsan.DataQualityInterfaces-20200928
into
master
Overview
2
Commits
1
Pipelines
1
Changes
2
Merged
Scott Snyder
requested to merge
ssnyder/athena:ubsan.DataQualityInterfaces-20200928
into
master
4 years ago
Overview
2
Commits
1
Pipelines
1
Changes
2
Expand
Suppress some warnings from the undefined behavior sanitizer seen with han-config-gen.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
0e26f0bb
1 commit,
4 years ago
2 files
+
6
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
DataQuality/DataQualityInterfaces/src/han_config_gen.cxx
+
5
−
0
Options
@@ -13,6 +13,9 @@
#include
"DataQualityInterfaces/HanConfig.h"
#include
"DataQualityInterfaces/ConditionsSingleton.h"
#include
"CxxUtils/ubsan_suppress.h"
#include
"TInterpreter.h"
namespace
{
void
usage
(
const
std
::
string
&
command_name
,
int
exit_code
);
@@ -36,6 +39,8 @@ public:
int
main
(
int
argc
,
char
*
argv
[]
)
{
CxxUtils
::
ubsan_suppress
([]()
{
TInterpreter
::
Instance
();
});
CmdLineArgs
arg
(
argc
,
argv
);
std
::
string
infileName
(
arg
.
mconfig
);
Loading