Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
L
libcifpp
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
libcifpp
Commits
2bf4284f
Unverified
Commit
2bf4284f
authored
Apr 21, 2023
by
Maarten L. Hekkelman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cleanup
parent
d9e2fc97
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
CMakeLists.txt
+1
-2
src/utilities.cpp
+2
-2
No files found.
CMakeLists.txt
View file @
2bf4284f
...
...
@@ -418,8 +418,7 @@ if(ENABLE_TESTING)
find_package
(
Boost REQUIRED
)
list
(
APPEND CIFPP_tests unit-v2 unit-3d format model rename-compound sugar
)
list
(
APPEND CIFPP_tests unit-v2 unit-3d format model rename-compound sugar spinner
)
foreach
(
CIFPP_TEST IN LISTS CIFPP_tests
)
set
(
CIFPP_TEST
"
${
CIFPP_TEST
}
-test"
)
...
...
src/utilities.cpp
View file @
2bf4284f
...
...
@@ -191,7 +191,7 @@ void progress_bar_impl::run()
continue
;
if
(
not
printedAny
and
isatty
(
STDOUT_FILENO
))
fputs
(
"\e[?25l"
,
stdout
)
;
std
::
cout
<<
"\e[?25l"
;
print_progress
();
...
...
@@ -206,7 +206,7 @@ void progress_bar_impl::run()
{
print_done
();
if
(
isatty
(
STDOUT_FILENO
))
fputs
(
"\e[?25h"
,
stdout
)
;
std
::
cout
<<
"\e[?25h"
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment