git subrepo pull (merge) lib/sead

subrepo:
  subdir:   "lib/sead"
  merged:   "14326b350"
upstream:
  origin:   "https://github.com/open-ead/sead"
  branch:   "master"
  commit:   "14326b350"
git-subrepo:
  version:  "0.4.3"
  origin:   "ssh://git@github.com/ingydotnet/git-subrepo"
  commit:   "2f68596"
This commit is contained in:
Léo Lam
2022-03-22 19:26:48 +01:00
parent 0197ca3aba
commit 7ca13b5938
5 changed files with 23 additions and 19 deletions
+3 -3
View File
@@ -74,7 +74,7 @@ struct BaseMtx33
union
{
T m[3][3];
T a[9];
std::array<T, 9> a;
};
};
@@ -84,7 +84,7 @@ struct BaseMtx34
union
{
T m[3][4];
T a[12];
std::array<T, 12> a;
};
};
@@ -94,7 +94,7 @@ struct BaseMtx44
union
{
T m[4][4];
T a[16];
std::array<T, 16> a;
};
};