-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup: Remove a ton of unnecessary ";" (that cause pedantic warning…
…s). (#1259)
- Loading branch information
1 parent
f51d0c0
commit 6e3ab76
Showing
43 changed files
with
139 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,4 @@ namespace EcalMeasCutterGlobals | |
+ (VERSION_MINOR * 1000) | ||
+ (VERSION_MAJOR * 1000 * 1000)); | ||
} | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
;/* ========================= eCAL LICENSE ================================= | ||
; * | ||
; * Copyright (C) 2016 - 2019 Continental Corporation | ||
; * | ||
; * Licensed under the Apache License, Version 2.0 (the "License"); | ||
; * you may not use this file except in compliance with the License. | ||
; * You may obtain a copy of the License at | ||
; * | ||
; * http://www.apache.org/licenses/LICENSE-2.0 | ||
; * | ||
; * Unless required by applicable law or agreed to in writing, software | ||
; * distributed under the License is distributed on an "AS IS" BASIS, | ||
; * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
; * See the License for the specific language governing permissions and | ||
; * limitations under the License. | ||
; * | ||
; * ========================= eCAL LICENSE ================================= | ||
;*/ | ||
/* ========================= eCAL LICENSE ================================= | ||
* | ||
* Copyright (C) 2016 - 2019 Continental Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* ========================= eCAL LICENSE ================================= | ||
*/ | ||
|
||
;/** | ||
; * eCALMon CLI version definition | ||
;**/ | ||
/** | ||
* eCALMon CLI version definition | ||
**/ | ||
|
||
#pragma once | ||
|
||
;/* version parsed out into numeric values */ | ||
/* version parsed out into numeric values */ | ||
#define ECAL_MON_CLI_VERSION_MAJOR 1 | ||
#define ECAL_MON_CLI_VERSION_MINOR 0 | ||
#define ECAL_MON_CLI_VERSION_PATCH 2 | ||
|
||
;/* version as string */ | ||
/* version as string */ | ||
#define ECAL_MON_CLI_VERSION "1.0.2" | ||
#define ECAL_MON_CLI_DATE "13.03.2020" | ||
|
||
;/* name as string */ | ||
/* name as string */ | ||
#define ECAL_MON_CLI_NAME "eCALMon CLI" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,4 +33,4 @@ namespace EcalmonGlobals | |
+ (VERSION_MINOR * 1000) | ||
+ (VERSION_MAJOR * 1000 * 1000)); | ||
} | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
;/* ========================= eCAL LICENSE ================================= | ||
; * | ||
; * Copyright (C) 2016 - 2019 Continental Corporation | ||
; * | ||
; * Licensed under the Apache License, Version 2.0 (the "License"); | ||
; * you may not use this file except in compliance with the License. | ||
; * You may obtain a copy of the License at | ||
; * | ||
; * http://www.apache.org/licenses/LICENSE-2.0 | ||
; * | ||
; * Unless required by applicable law or agreed to in writing, software | ||
; * distributed under the License is distributed on an "AS IS" BASIS, | ||
; * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
; * See the License for the specific language governing permissions and | ||
; * limitations under the License. | ||
; * | ||
; * ========================= eCAL LICENSE ================================= | ||
;*/ | ||
/* ========================= eCAL LICENSE ================================= | ||
* | ||
* Copyright (C) 2016 - 2019 Continental Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* ========================= eCAL LICENSE ================================= | ||
*/ | ||
|
||
;/** | ||
; * eCALMon TUI version definition | ||
;**/ | ||
/** | ||
* eCALMon TUI version definition | ||
**/ | ||
|
||
#pragma once | ||
|
||
;/* version parsed out into numeric values */ | ||
/* version parsed out into numeric values */ | ||
#define ECAL_MON_TUI_VERSION_MAJOR 1 | ||
#define ECAL_MON_TUI_VERSION_MINOR 0 | ||
#define ECAL_MON_TUI_VERSION_PATCH 0 | ||
|
||
;/* version as string */ | ||
/* version as string */ | ||
#define ECAL_MON_TUI_VERSION "1.0.0" | ||
#define ECAL_MON_TUI_DATE "11.10.2022" | ||
|
||
;/* name as string */ | ||
/* name as string */ | ||
#define ECAL_MON_TUI_NAME "eCALMon TUI" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,4 +35,4 @@ namespace EcalPlayGlobals | |
+ (VERSION_MINOR * 1000) | ||
+ (VERSION_MAJOR * 1000 * 1000)); | ||
} | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,36 @@ | ||
;/* ========================= eCAL LICENSE ================================= | ||
; * | ||
; * Copyright (C) 2016 - 2019 Continental Corporation | ||
; * | ||
; * Licensed under the Apache License, Version 2.0 (the "License"); | ||
; * you may not use this file except in compliance with the License. | ||
; * You may obtain a copy of the License at | ||
; * | ||
; * http://www.apache.org/licenses/LICENSE-2.0 | ||
; * | ||
; * Unless required by applicable law or agreed to in writing, software | ||
; * distributed under the License is distributed on an "AS IS" BASIS, | ||
; * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
; * See the License for the specific language governing permissions and | ||
; * limitations under the License. | ||
; * | ||
; * ========================= eCAL LICENSE ================================= | ||
;*/ | ||
/* ========================= eCAL LICENSE ================================= | ||
* | ||
* Copyright (C) 2016 - 2019 Continental Corporation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
* ========================= eCAL LICENSE ================================= | ||
*/ | ||
|
||
;/** | ||
; * @brief MMA version definition | ||
;**/ | ||
/** | ||
* @brief MMA version definition | ||
**/ | ||
|
||
#pragma once | ||
|
||
;/* application name */ | ||
/* application name */ | ||
#define MMA_APPLICATION_NAME "Machine Monitoring Agent" | ||
|
||
;/* version parsed out into numeric values */ | ||
/* version parsed out into numeric values */ | ||
#define MMA_VERSION_MAJOR 1 | ||
#define MMA_VERSION_MINOR 0 | ||
#define MMA_VERSION_PATCH 8 | ||
|
||
;/* version as string */ | ||
/* version as string */ | ||
#define MMA_VERSION "v.1.0.8.20170224" | ||
#define MMA_DATE "24.02.2017" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -549,4 +549,4 @@ namespace eCAL | |
bool m_created; | ||
bool m_initialized; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -356,4 +356,4 @@ namespace eCAL | |
bool m_created; | ||
bool m_initialized; | ||
}; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.