Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Jan 23, 2025
1 parent bb800cd commit fbf7862
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ jobs:
- name: Run Clang Tidy
working-directory: cpp
run: |
run-clang-tidy-19 -j$(nproc) -quiet src/Ice/ || true
run-clang-tidy-19 -j$(nproc) -quiet src/Ice/
2 changes: 2 additions & 0 deletions cpp/src/Ice/CollocatedRequestHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
#include "TraceLevels.h"
#include "TraceUtil.h"

#include <algorithm>

using namespace std;
using namespace Ice;
using namespace IceInternal;
Expand Down
1 change: 1 addition & 0 deletions cpp/src/Ice/ConnectionFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
#include "TraceLevels.h"
#include "Transceiver.h"

#include <algorithm>
#include <chrono>
#include <iterator>

Expand Down
1 change: 1 addition & 0 deletions cpp/src/Ice/ConnectionI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include "DisableWarnings.h"

#include <algorithm>
#include <iomanip>
#include <stdexcept>

Expand Down
1 change: 1 addition & 0 deletions cpp/src/Ice/Initialize.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#include "LoggerI.h"
#include "PluginManagerI.h"

#include <algorithm>
#include <mutex>
#include <stdexcept>

Expand Down
2 changes: 2 additions & 0 deletions cpp/src/Ice/ObjectAdapterFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
#include "Ice/UUID.h"
#include "ObjectAdapterI.h"

#include <algorithm>

using namespace std;
using namespace Ice;
using namespace IceInternal;
Expand Down
1 change: 1 addition & 0 deletions cpp/src/Ice/ObjectAdapterI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
# include <sys/time.h>
#endif

#include <algorithm>
#include <iterator>
#include <stdexcept>

Expand Down
1 change: 1 addition & 0 deletions cpp/src/Ice/Value.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include "Ice/OutputStream.h"
#include "Ice/SlicedData.h"

#include <algorithm>
#include <deque>

using namespace std;
Expand Down
2 changes: 2 additions & 0 deletions cpp/src/Ice/WSEndpoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
#include "WSAcceptor.h"
#include "WSConnector.h"

#include <algorithm>

using namespace std;
using namespace Ice;
using namespace IceInternal;
Expand Down

0 comments on commit fbf7862

Please sign in to comment.