Skip to content

Commit e458f34

Browse files
committed
update refs after renaming repo
1 parent 6464b3d commit e458f34

3 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ jobs:
6060
with:
6161
token: ${{ secrets.CODECOV_TOKEN }}
6262
files: ./coverage_filtered.info
63-
slug: SergeyMakeev/slot_map
63+
slug: SergeyMakeev/SlotMap
6464
fail_ci_if_error: true
6565
verbose: true

CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ set(TEST_SOURCES
3030

3131
add_executable(${PROJ_NAME} ${TEST_SOURCES})
3232

33+
# Set Visual Studio startup project
34+
set_property(DIRECTORY ${CMAKE_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT SlotMapTest)
35+
36+
3337
if(MSVC)
3438
target_compile_options(${PROJ_NAME} PRIVATE /W4 /WX /permissive- /EHsc)
3539
add_definitions(-D_CRT_SECURE_NO_WARNINGS)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Slot Map
22

33

4-
[![License](https://img.shields.io/github/license/SergeyMakeev/CircularBuffer)](LICENSE)
5-
[![ci](https://github.com/SergeyMakeev/CircularBuffer/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/SergeyMakeev/CircularBuffer/actions/workflows/ci.yml)
4+
[![License](https://img.shields.io/github/license/SergeyMakeev/SlotMap)](LICENSE)
5+
[![ci](https://github.com/SergeyMakeev/SlotMap/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/SergeyMakeev/SlotMap/actions/workflows/ci.yml)
66

77
A Slot Map is a high-performance associative container with persistent unique keys to access stored values. It's designed for performance-critical applications where stable references, O(1) operations, and memory efficiency are essential.
88

@@ -101,8 +101,8 @@ Simply include the header file in your project:
101101

102102
### Building Tests
103103
```bash
104-
git clone https://github.com/SergeyMakeev/slot_map.git
105-
cd slot_map
104+
git clone https://github.com/SergeyMakeev/SlotMap.git
105+
cd SlotMap
106106
mkdir build && cd build
107107
cmake ..
108108
cmake --build .

0 commit comments

Comments
 (0)