Skip to content

Commit e72006c

Browse files
committed
Fix array template definition.
Signed-off-by: Danilo Aimini <[email protected]>
1 parent 382892a commit e72006c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Code/Framework/AzToolsFramework/Tests/PythonLoaderTests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ namespace UnitTest
8181
AZStd::vector<AZStd::string> expectedResults;
8282
expectedResults.emplace_back(testFullSiteLIbsPath.LexicallyNormal().Native());
8383

84-
static constexpr AZStd::array<const char*, 3ui64> testEggLinkPaths({ "/lib/path/one", "/lib/path/two", "/lib/path/three" });
84+
static constexpr AZStd::array<const char*, 3> testEggLinkPaths({ "/lib/path/one", "/lib/path/two", "/lib/path/three" });
8585
int index = 0;
8686
for (const char* testEggLinkPath : testEggLinkPaths)
8787
{

0 commit comments

Comments
 (0)