Skip to content

Commit

Permalink
Implement review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tkorsi committed Jan 23, 2024
1 parent 474983e commit e6a656a
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 18 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,4 @@ util/all_thread.cpp
util/all_util.cpp
util/charset/all_charset.cpp

cmake-build-debug
2 changes: 1 addition & 1 deletion contrib/libs/tcmalloc/tcmalloc/huge_page_filler.h
Original file line number Diff line number Diff line change
Expand Up @@ -907,7 +907,7 @@ class HugePageFiller {
void PrintInPbtxt(PbtxtRegion* hpaa) const;

private:
typedef std::list<TrackerType> TrackerList;
typedef TList<TrackerType> TrackerList;

// This class wraps an array of N TrackerLists and a Bitmap storing which
// elements are non-empty.
Expand Down
2 changes: 1 addition & 1 deletion contrib/libs/tcmalloc/tcmalloc/huge_region.h
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ class HugeRegionSet {

size_t n_;
// Sorted by longest_free increasing.
std::list<Region> list_;
TList<Region> list_;
};

// REQUIRES: r.len() == size(); r unbacked.
Expand Down
2 changes: 1 addition & 1 deletion contrib/libs/tcmalloc/tcmalloc/span.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ inline constexpr size_t kBitmapScalingDenominator = 65536;
// and is on returned PageHeap list.
// location_ == ON_RETURNED_FREELIST.
class Span;
typedef std::list<Span> SpanList;
typedef TList<Span> SpanList;

class Span : public SpanList::Elem {
public:
Expand Down
14 changes: 0 additions & 14 deletions util/generic/list_ut.cpp

This file was deleted.

1 change: 0 additions & 1 deletion util/generic/ut/ya.make
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ SRCS(
generic/iterator_range_ut.cpp
generic/iterator_ut.cpp
generic/lazy_value_ut.cpp
generic/list_ut.cpp
generic/map_ut.cpp
generic/mapfindptr_ut.cpp
generic/maybe_ut.cpp
Expand Down

0 comments on commit e6a656a

Please sign in to comment.