-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[mma] cleaned includes #1372
[mma] cleaned includes #1372
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,9 +19,7 @@ | |
|
||
#pragma once | ||
|
||
#include <ctime> | ||
#include <fstream> | ||
#include <iostream> | ||
#include <string> | ||
|
||
class Logger | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -17,10 +17,15 @@ | |||||
* ========================= eCAL LICENSE ================================= | ||||||
*/ | ||||||
|
||||||
#include <chrono> | ||||||
#include <cstdint> | ||||||
#include <cstdio> | ||||||
#include <stdio.h> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: inclusion of deprecated C++ header 'stdio.h'; consider using 'cstdio' instead [modernize-deprecated-headers]
Suggested change
|
||||||
#include <string> | ||||||
#include <thread> | ||||||
#ifdef __unix__ | ||||||
|
||||||
#include <string.h> | ||||||
#include <iostream> | ||||||
|
||||||
#include "../include/linux/pipe_refresher.h" | ||||||
|
||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,7 @@ | |
*/ | ||
|
||
#include "../include/query_manager.h" | ||
#include <string> | ||
|
||
QueryManager::QueryManager() | ||
{ | ||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -17,8 +17,11 @@ | |||||
* ========================= eCAL LICENSE ================================= | ||||||
*/ | ||||||
|
||||||
#include <cstdio> | ||||||
#include <cstdlib> | ||||||
#include <iostream> | ||||||
#include <list> | ||||||
#include <stdio.h> | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: inclusion of deprecated C++ header 'stdio.h'; consider using 'cstdio' instead [modernize-deprecated-headers]
Suggested change
|
||||||
#include <string> | ||||||
|
||||||
#ifdef _WIN32 | ||||||
|
@@ -29,7 +32,6 @@ | |||||
#endif | ||||||
|
||||||
#ifdef __linux__ | ||||||
#include <csignal> | ||||||
#include <string.h> | ||||||
#include <sys/types.h> | ||||||
#include <unistd.h> | ||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: inclusion of deprecated C++ header 'stdio.h'; consider using 'cstdio' instead [modernize-deprecated-headers]