Skip to content

Commit d104aac

Browse files
committed
[bugfix] resolve undefine reference error
This commit fixes the undefined reference to nntrainer::Quantizer::custom_quantizer **Self-evaluation:** 1. Build test: [X]Passed [ ]Failed [ ]Skipped 2. Run test: [X]Passed [ ]Failed [ ]Skipped Signed-off-by: Donghyeon Jeong <dhyeon.jeong@samsung.com>
1 parent 0b49cd0 commit d104aac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nntrainer/tensor/quantizer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ enum class QScheme : uint8_t {
4545
*/
4646
class Quantizer {
4747
private:
48-
static std::unordered_map<QScheme, Quantizer *>
48+
static inline std::unordered_map<QScheme, Quantizer *>
4949
custom_quantizers; /** Hash table that holds empty instances of the custom
5050
quantizers */
5151

0 commit comments

Comments
 (0)