mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
11 lines
285 B
C++
11 lines
285 B
C++
#ifndef COSMOPOLITAN_THIRD_PARTY_AVIR_LANCZOS1_HPP_
|
|
#define COSMOPOLITAN_THIRD_PARTY_AVIR_LANCZOS1_HPP_
|
|
#include "third_party/avir/lancir.h"
|
|
|
|
struct Lanczos1Impl {
|
|
Lanczos1Impl() : lanczos{} {
|
|
}
|
|
avir::CLancIR lanczos;
|
|
};
|
|
|
|
#endif /* COSMOPOLITAN_THIRD_PARTY_AVIR_LANCZOS1_HPP_ */
|