Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
CoMISo
Base
Merge requests
!16
merge from ReForm
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
merge from ReForm
lyonm/merge-from-ReForm
into
master
Overview
0
Commits
1
Pipelines
0
Changes
13
Merged
Max Lyon
requested to merge
lyonm/merge-from-ReForm
into
master
2 years ago
Overview
0
Commits
1
Pipelines
0
Changes
13
Expand
merging the latest updates from the ReForm team.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
172ab59f
1 commit,
2 years ago
13 files
+
247
−
122
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
13
Search (e.g. *.vue) (Ctrl+P)
Debug/DebOut.hh
+
6
−
2
Options
@@ -9,7 +9,9 @@
#ifndef DEB_ON
#define DEB_enter_func PROGRESS_TICK;
#define DEB_only(CC)
#define DEB_only(EXPR)
#define DEB_onlyc(EXPR)
#define DEB_only_if(CC, EXPR)
#define DEB_exec(LL, AA) { PROGRESS_TICK; }
#define DEB_exec_if(CC, LL, AA) { PROGRESS_TICK; }
#define DEB_out(LL, AA) { PROGRESS_TICK; }
@@ -138,7 +140,9 @@ std::string to_string(const T& _t)
static int deb_lvl = ::Debug::INVALID_LEVEL; \
::Debug::Enter deb(__FILE__, __FUNCTION__, deb_nmbr, deb_lvl);
#define DEB_only(CC) CC
#define DEB_only(EXPR) EXPR
#define DEB_onlyc(EXPR) , EXPR // useful when comma is optionally required
#define DEB_only_if(CC, EXPR) if (CC) { (EXPR); }
#define DEB_if(CC, LL, EXPR) \
{ \
Loading