René's URL Explorer Experiment


Title: FTBFS: error: reference to ‘array’ is ambiguous · Issue #1585 · arrayfire/arrayfire · GitHub

Open Graph Title: FTBFS: error: reference to ‘array’ is ambiguous · Issue #1585 · arrayfire/arrayfire

X Title: FTBFS: error: reference to ‘array’ is ambiguous · Issue #1585 · arrayfire/arrayfire

Description: Tried to compile the latest tip of devel (2f474a8) on Debian, but getting a error: reference to ‘array’ is ambiguous in test/clamp.cpp. Sounds like someone perhaps brought std::array to the af namespace, hence the ambiguity? Detailed err...

Open Graph Description: Tried to compile the latest tip of devel (2f474a8) on Debian, but getting a error: reference to ‘array’ is ambiguous in test/clamp.cpp. Sounds like someone perhaps brought std::array to the af name...

X Description: Tried to compile the latest tip of devel (2f474a8) on Debian, but getting a error: reference to ‘array’ is ambiguous in test/clamp.cpp. Sounds like someone perhaps brought std::array to the af name...

Opengraph URL: https://github.com/arrayfire/arrayfire/issues/1585

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"FTBFS: error: reference to ‘array’ is ambiguous","articleBody":"Tried to compile the latest tip of `devel` (2f474a804a381915770981f518493204bb53d3c1) on Debian, but getting a `error: reference to ‘array’ is ambiguous` in `test/clamp.cpp`. Sounds like someone perhaps brought `std::array` to the `af` namespace, hence the ambiguity?\n\nDetailed error:\n\n```\n[ 70%] Building CXX object test/CMakeFiles/clamp_opencl.dir/clamp.cpp.o\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp: In member function ‘virtual void ClampTests_FloatArrayArray_Test::TestBody()’:\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:24:5: error: reference to ‘array’ is ambiguous\n     array in = af::randu(num, f32);\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:25:5: error: reference to ‘array’ is ambiguous\n     array lo = af::randu(num, f32)/10;       // Ensure lo \u003c= 0.1\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:26:5: error: reference to ‘array’ is ambiguous\n     array hi = 1.0 - af::randu(num, f32)/10; // Ensure hi \u003e= 0.9\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:27:14: error: ‘lo’ was not declared in this scope\n     af::eval(lo, hi);\n              ^~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:27:18: error: ‘hi’ was not declared in this scope\n     af::eval(lo, hi);\n                  ^~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:31:5: error: reference to ‘array’ is ambiguous\n     array out = clamp(in, lo, hi);\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:32:5: error: ‘out’ was not declared in this scope\n     out.host(\u0026hout[0]);\n     ^~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:33:5: error: ‘in’ was not declared in this scope\n     in.host(\u0026hin[0]);\n     ^~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp: In member function ‘virtual void ClampTests_FloatArrayScalar_Test::TestBody()’:\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:46:5: error: reference to ‘array’ is ambiguous\n     array in = af::randu(num, f32);\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:47:5: error: reference to ‘array’ is ambiguous\n     array lo = af::randu(num, f32)/10; // Ensure lo \u003c= 0.1\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:51:5: error: reference to ‘array’ is ambiguous\n     array out = clamp(in, lo, hi);\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:53:5: error: ‘out’ was not declared in this scope\n     out.host(\u0026hout[0]);\n     ^~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:54:5: error: ‘in’ was not declared in this scope\n     in.host(\u0026hin[0]);\n     ^~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:55:5: error: ‘lo’ was not declared in this scope\n     lo.host(\u0026hlo[0]);\n     ^~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp: In member function ‘virtual void ClampTests_FloatScalarArray_Test::TestBody()’:\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:66:5: error: reference to ‘array’ is ambiguous\n     array in = af::randu(num, f32);\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:68:5: error: reference to ‘array’ is ambiguous\n     array hi = 1.0 - af::randu(num, f32)/10; // Ensure hi \u003e= 0.9\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:71:5: error: reference to ‘array’ is ambiguous\n     array out = clamp(in, lo, hi);\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:73:5: error: ‘out’ was not declared in this scope\n     out.host(\u0026hout[0]);\n     ^~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:74:5: error: ‘in’ was not declared in this scope\n     in.host(\u0026hin[0]);\n     ^~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:75:5: error: ‘hi’ was not declared in this scope\n     hi.host(\u0026hhi[0]);\n     ^~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp: In member function ‘virtual void ClampTests_FloatScalarScalar_Test::TestBody()’:\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:86:5: error: reference to ‘array’ is ambiguous\n     array in = af::randu(num, f32);\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:91:5: error: reference to ‘array’ is ambiguous\n     array out = clamp(in, lo, hi);\n     ^~~~~\nIn file included from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:11:0:\n/home/gvaillan/local/src/arrayfire/include/af/array.h:27:17: note: candidates are: class af::array\n     class AFAPI array {\n                 ^~~~~\nIn file included from /usr/include/c++/6/tuple:39:0,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-port.h:708,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/internal/gtest-internal.h:40,\n                 from /home/gvaillan/local/src/arrayfire/test/../test/gtest/include/gtest/gtest.h:58,\n                 from /home/gvaillan/local/src/arrayfire/test/clamp.cpp:10:\n/usr/include/c++/6/array:90:12: note:                 template\u003cclass _Tp, long unsigned int _Nm\u003e struct std::array\n     struct array\n            ^~~~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:93:5: error: ‘out’ was not declared in this scope\n     out.host(\u0026hout[0]);\n     ^~~\n/home/gvaillan/local/src/arrayfire/test/clamp.cpp:94:5: error: ‘in’ was not declared in this scope\n     in.host(\u0026hin[0]);\n     ^~\n\n```\n","author":{"url":"https://github.com/ghisvail","@type":"Person","name":"ghisvail"},"datePublished":"2016-09-12T08:02:43.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/1585/arrayfire/issues/1585"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:8419d9ad-61cf-ab39-b4da-0323d150f5ab
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idCD98:366DBA:153C85E:1C626E1:6969A204
html-safe-nonce90e9d68e5d7859a9a575bbc0e7e903b5c34dbcf4e1a7dceb581d7ba519508179
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDRDk4OjM2NkRCQToxNTNDODVFOjFDNjI2RTE6Njk2OUEyMDQiLCJ2aXNpdG9yX2lkIjoiMjY4OTAxNTkzNzAxOTUxOTQ5MiIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmac05f8078c5286afd169a577dd4dad71b8bd1a5a9c37a78ade32e0f2cdf06d157f
hovercard-subject-tagissue:176315814
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/arrayfire/arrayfire/1585/issue_layout
twitter:imagehttps://opengraph.githubassets.com/82bd4ec597783319ecc8d826a89c6806958ce8c3c029bb5324b0d461fad38671/arrayfire/arrayfire/issues/1585
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/82bd4ec597783319ecc8d826a89c6806958ce8c3c029bb5324b0d461fad38671/arrayfire/arrayfire/issues/1585
og:image:altTried to compile the latest tip of devel (2f474a8) on Debian, but getting a error: reference to ‘array’ is ambiguous in test/clamp.cpp. Sounds like someone perhaps brought std::array to the af name...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameghisvail
hostnamegithub.com
expected-hostnamegithub.com
None24c4c97a2d520cb286b35e1a4c22d7a4df3c26a2fa28dd7cdf0e65db327b4de7
turbo-cache-controlno-preview
go-importgithub.com/arrayfire/arrayfire git https://github.com/arrayfire/arrayfire.git
octolytics-dimension-user_id5395442
octolytics-dimension-user_loginarrayfire
octolytics-dimension-repository_id25889802
octolytics-dimension-repository_nwoarrayfire/arrayfire
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id25889802
octolytics-dimension-repository_network_root_nwoarrayfire/arrayfire
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release124667f43168afb6c9c03b7c02eb5b1d2e1be3d9
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/arrayfire/arrayfire/issues/1585#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Farrayfire%2Farrayfire%2Fissues%2F1585
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Farrayfire%2Farrayfire%2Fissues%2F1585
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=arrayfire%2Farrayfire
Reloadhttps://github.com/arrayfire/arrayfire/issues/1585
Reloadhttps://github.com/arrayfire/arrayfire/issues/1585
Reloadhttps://github.com/arrayfire/arrayfire/issues/1585
arrayfire https://github.com/arrayfire
arrayfirehttps://github.com/arrayfire/arrayfire
Notifications https://github.com/login?return_to=%2Farrayfire%2Farrayfire
Fork 549 https://github.com/login?return_to=%2Farrayfire%2Farrayfire
Star 4.8k https://github.com/login?return_to=%2Farrayfire%2Farrayfire
Code https://github.com/arrayfire/arrayfire
Issues 285 https://github.com/arrayfire/arrayfire/issues
Pull requests 18 https://github.com/arrayfire/arrayfire/pulls
Actions https://github.com/arrayfire/arrayfire/actions
Projects 0 https://github.com/arrayfire/arrayfire/projects
Wiki https://github.com/arrayfire/arrayfire/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/arrayfire/arrayfire/security
Please reload this pagehttps://github.com/arrayfire/arrayfire/issues/1585
Insights https://github.com/arrayfire/arrayfire/pulse
Code https://github.com/arrayfire/arrayfire
Issues https://github.com/arrayfire/arrayfire/issues
Pull requests https://github.com/arrayfire/arrayfire/pulls
Actions https://github.com/arrayfire/arrayfire/actions
Projects https://github.com/arrayfire/arrayfire/projects
Wiki https://github.com/arrayfire/arrayfire/wiki
Security https://github.com/arrayfire/arrayfire/security
Insights https://github.com/arrayfire/arrayfire/pulse
New issuehttps://github.com/login?return_to=https://github.com/arrayfire/arrayfire/issues/1585
New issuehttps://github.com/login?return_to=https://github.com/arrayfire/arrayfire/issues/1585
FTBFS: error: reference to ‘array’ is ambiguoushttps://github.com/arrayfire/arrayfire/issues/1585#top
https://github.com/ghisvail
https://github.com/ghisvail
ghisvailhttps://github.com/ghisvail
on Sep 12, 2016https://github.com/arrayfire/arrayfire/issues/1585#issue-176315814
2f474a8https://github.com/arrayfire/arrayfire/commit/2f474a804a381915770981f518493204bb53d3c1
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.