Skip to content

opirko/smallvector-mi-mpc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Small Vector in C++

Container similar to std::vector created as a school project at FIT CTU, specifically in MI-MPC course.

Build Instructions

This project uses CMake as its build system and supports C++11 or higher.

Building the Tests

  1. Create a build directory:

    mkdir -p _build
    cd _build
  2. Configure the project:

    cmake ..

    To specify a different C++ standard:

    cmake -DCXX_STANDARD=23 ..
  3. Build the project:

    make -j`nproc`

Test Run Instructions

After building, you can run the test executable:

# From the _build directory
./test_small_vector

Code Formatting

If clang-format is available, you can format the source code:

# From the _build directory
make format

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published