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 | 798c0b24b1f26f42cc28642d389f790612ea738f (patch) | |
tree | 8ca4fbba3fae9dc2c02ad52877f9d147ff0eb25d /computer-network-experiment/PreConfig.hpp | |
parent | d88b76be5395127383be79ce227ee68cb5a03a86 (diff) | |
download | life-798c0b24b1f26f42cc28642d389f790612ea738f.tar.gz life-798c0b24b1f26f42cc28642d389f790612ea738f.tar.bz2 life-798c0b24b1f26f42cc28642d389f790612ea738f.zip |
...
Diffstat (limited to 'computer-network-experiment/PreConfig.hpp')
-rw-r--r-- | computer-network-experiment/PreConfig.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/computer-network-experiment/PreConfig.hpp b/computer-network-experiment/PreConfig.hpp new file mode 100644 index 0000000..d78292c --- /dev/null +++ b/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
|