Skip to content

Commit

Permalink
Replace std::vector with xr_vector.
Browse files Browse the repository at this point in the history
  • Loading branch information
intorr committed Mar 8, 2018
1 parent 5a5226b commit 243c7c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrCore/cpuid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ unsigned int query_processor_info(processor_info* pinfo)
std::bitset<32> f_81_ECX;*/
std::bitset<32> f_81_EDX;

std::vector<std::array<int, 4>> data;
xr_vector<std::array<int, 4>> data;
std::array<int, 4> cpui;

__cpuid(cpui.data(), 0);
Expand Down

0 comments on commit 243c7c7

Please sign in to comment.