Files
assimp/code/AssetLib
Krishty 72f360710a Fix MSVC Warnings With “emplace_back()”
Several places in the code call `std::vector<aiVector3D>.emplace_back(0, 0, 0)`. The constructor of `aiVector3D` actually expects arguments of the type `ai_real`, (alias of `float` if compiling without `ASSIMP_DOUBLE_PRECISION`) but the literal `0` is of type `int`.

`emplace_back()` does support promotion, but `int` to `float` is a potentially lossy conversion. tl;dr: On warning level 4, MSVC spits out a very deeply nested `warning C4244: 'argument': conversion from '_Ty' to 'TReal', possible loss of data with _Ty=int and TReal=ai_real`.
2023-01-18 00:08:38 +01:00
..
2022-11-03 12:46:40 -04:00
2022-12-05 13:15:42 +01:00
2022-01-18 22:21:58 +01:00
2023-01-15 19:12:24 +01:00
2022-11-08 11:30:53 -05:00
2022-11-08 11:19:12 -05:00
2023-01-04 09:19:37 +01:00
2022-05-31 19:16:46 +02:00
2022-12-15 14:06:57 +01:00
2022-12-02 09:24:51 +01:00
2022-08-25 11:32:59 -04:00
2022-12-16 09:03:40 +01:00
2022-09-02 11:20:02 -04:00
2022-01-10 21:13:43 +01:00