luaur_analysis/methods/normalizer_normalizer_normalize_alt_c.rs
1use crate::records::normalizer::Normalizer;
2
3impl Normalizer {
4 /// In C++, the default constructor is deleted.
5 /// In Rust, we represent this by providing a method that panics if called.
6 #[allow(dead_code)]
7 pub fn normalizer(&mut self) {
8 panic!("Normalizer default constructor is deleted in C++");
9 }
10}