Skip to content

Commit 15ea9df

Browse files
authored
Fix case-sensitive file names (#94)
* feat: implement Tags class with uppercase handling and remove legacy Tags implementation * feat: add JavaProfilerTags class and remove legacy Tags implementation * refactor: replace legacy Tags with JavaProfilerTags in header files * feat: implement Tags class with complete functionality and remove Tags_uppercase files
1 parent 2616d58 commit 15ea9df

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

profiler/src/ProfilerEngine/Datadog.Profiler.Native/tags.cpp renamed to profiler/src/ProfilerEngine/Datadog.Profiler.Native/JavaProfilerTags.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#include "tags.h"
17+
#include "JavaProfilerTags.h"
1818

1919
#include <algorithm>
2020
#include <mutex> // NOLINT

profiler/src/ProfilerEngine/Datadog.Profiler.Native/ManagedThreadInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include "IThreadInfo.h"
1212
#include "ScopedHandle.h"
1313
#include "shared/src/native-src/string.h"
14-
#include "tags.h"
14+
#include "JavaProfilerTags.h"
1515

1616
#include <atomic>
1717
#include <memory>

profiler/src/ProfilerEngine/Datadog.Profiler.Native/StackSnapshotResultBuffer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
#include "shared/src/native-src/dd_span.hpp"
2020

21-
#include "tags.h"
21+
#include "JavaProfilerTags.h"
2222

2323

2424

0 commit comments

Comments
 (0)