Skip to content

Commit

Permalink
[linalg] add missing used headers
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoisCarouge committed Jan 27, 2025
1 parent cdb33d6 commit b3a09b0
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions support/naive/fcarouge/naive.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,19 @@ For more information, please refer to <https://unlicense.org> */

#include "fcarouge/utility.hpp"

#include <concepts>
#include <cstddef>
#include <initializer_list>
#include <type_traits>

namespace fcarouge::naive {

//! @name Types
//! @{

//! @brief Naive matrix.
//!
//! @details An array-of-arrays naive implementation matrix. The implementation
//! is constexpr compatible.
//! @details An array-of-arrays naive implementation matrix.
//!
//! @tparam Type The matrix element type.
//! @tparam Row The number of rows of the matrix.
Expand Down

0 comments on commit b3a09b0

Please sign in to comment.