diff options
author | crupest <crupest@outlook.com> | 2021-06-06 18:37:08 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-06-06 18:37:08 +0800 |
commit | 6d8fecb163a9c813a1b533970997353d33b6bf5e (patch) | |
tree | 8f01ce583fedf25a19b946f204ed05961153d54c /works/life/computer-network-experiment/PreConfig.hpp | |
parent | 346239e144b0644ed2d1a6ec3dc9f29d1e802eae (diff) | |
download | crupest-6d8fecb163a9c813a1b533970997353d33b6bf5e.tar.gz crupest-6d8fecb163a9c813a1b533970997353d33b6bf5e.tar.bz2 crupest-6d8fecb163a9c813a1b533970997353d33b6bf5e.zip |
import(life): ...
Diffstat (limited to 'works/life/computer-network-experiment/PreConfig.hpp')
-rw-r--r-- | works/life/computer-network-experiment/PreConfig.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/works/life/computer-network-experiment/PreConfig.hpp b/works/life/computer-network-experiment/PreConfig.hpp new file mode 100644 index 0000000..d78292c --- /dev/null +++ b/works/life/computer-network-experiment/PreConfig.hpp @@ -0,0 +1,6 @@ +#pragma once
+
+#ifdef _MSC_VER
+// disable the unnecessary warning about multi-inheritance
+#pragma warning(disable : 4250)
+#endif
|