Unnamed: 0
int64 0
832k
| id
float64 2.49B
32.1B
| type
stringclasses 1
value | created_at
stringlengths 19
19
| repo
stringlengths 7
112
| repo_url
stringlengths 36
141
| action
stringclasses 3
values | title
stringlengths 1
744
| labels
stringlengths 4
574
| body
stringlengths 9
211k
| index
stringclasses 10
values | text_combine
stringlengths 96
211k
| label
stringclasses 2
values | text
stringlengths 96
188k
| binary_label
int64 0
1
|
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
10,287
| 13,135,536,917
|
IssuesEvent
|
2020-08-07 03:09:29
|
ION28/BLUESPAWN
|
https://api.github.com/repos/ION28/BLUESPAWN
|
closed
|
Tune PE-Sieve
|
in progress lang/c++ mode/hunt module/processes platform/client priority/high type/bug
|
Since PE-Sieve was updated, it is producing more false positives when run on normal mode (and even more on intensive).
|
1.0
|
Tune PE-Sieve - Since PE-Sieve was updated, it is producing more false positives when run on normal mode (and even more on intensive).
|
process
|
tune pe sieve since pe sieve was updated it is producing more false positives when run on normal mode and even more on intensive
| 1
|
564,492
| 16,727,077,154
|
IssuesEvent
|
2021-06-10 14:07:28
|
enso-org/enso
|
https://api.github.com/repos/enso-org/enso
|
opened
|
Implement Suggestions Ordering
|
Category: Backend Change: Non-Breaking Difficulty: Core Contributor Priority: High Size: Medium Type: Enhancement
|
### Summary
<!--
- A summary of the task.
-->
This task is related to the Doc Chunks #1697. It is about implementing the suggestions ordering designed in the #1698
### Value
Suggestions ordering is required by IDE to show module-level documentation in the correct order.
<!--
- This section should describe the value of this task.
- This value can be for users, to the team, etc.
-->
### Specification
The task consists of two parts. Extracting the order of module suggestions in the `EnsureCompiledJob` and preparing the update message in the `SuggestionsHandler`
EnsureCompiledJob applies user edits, compiles, and indexes (extracts suggestions) from IR.
- There are two IRs available during the compilation - before and after applying the edits.
- From both IRs extract a list of suggestions using SuggestionBuilder and filter only the module-level ones (modules, atoms and methods)
- Given two lists of top-level suggestions. One represents suggestions from the previous compilation run, and the second represents the suggestions after the user edits are applied (current).
prev: Seq[Suggestion]
curr: Seq[Suggestion]
SuggestionBuilder already preserves the order of suggestions in the module. You need to find if the order is changed after applying the user edits.
Implement `SuggestionOrderDiff.compute(prev, curr)` method returning the Seq[NodeChange] (see [Suggestion Comparison] section below).
- Send the `Seq[NodeChange]` with the `SuggestionsDatabaseModuleUpdateNotification`.
SuggestionsHandler receives the `SuggestionsDatabaseModuleUpdateNotification` and applies the updates.
- Given the `Seq[NodeChange]`, you don't need to store the order in the database, just send it to IDE.
- Before sending, you need to convert `Seq[NodeChange]` to `Seq[IdChange]` where
class NodeChange(suggestion: Suggestion, prev: Option[Suggestion], next: Option[Suggestion])
class IdChange(suggestion: Long, prev: Option[Long], next: Option[Long])
IdChange contains ids of corresponding suggestions in the suggestions database (represented by Long).
You need to implement a method `SuggestionsRepo.get(suggestion: Suggestion): Long` that finds id of the given suggestion. As an example, take a look at the `SuggestionsRepo.remove(Suggestion)` method. It also does the lookup but in addition, removes the suggestion.
- Send the `Seq[IdChange]` with the `SearchProtocol.SuggestionsDatabaseUpdateNotification`
- Document the protocol changes in `docs/lanugage-server/protocol-language-server.md`
Note. Please come up with better naming. I.e., `NodeChange` and `IdChange` names are terrible.
#### Suggestion Comparison
Unlike the database, suggestions extracted from IR don't have stable ids associated with them. Instead, you can distinguish two suggestions by name, module, kind, and self type (see the `SuggestionDiff.compare` method). In other words, in the same scope, there can't be two suggestions with the same name, module, kind, and self type.
Example:
In this example two sequences of suggestions represented as lists of integers. Given that (name, module, kind, self type) is unique in the module-level scope, we can go from Seq[Suggestion] to Seq[Int] (just for the purpose of this example). And the problem boils down to finding the difference between two lists of integers.
Given.
prev: [53, 28, 74]
next: [53, 28, 42, 74]
A case when the user adds a new method (42) to the module.
Result.
The algorithm should produce something like that.
[
(53, prev=same, next=same),
(28, prev=same, next=42 ),
(42, prev=28 , next=74 ),
(74, prev=42 , next=same)
]
We represent suggestions order as a linked list with nodes, where
class Node(suggestion: Int, prev: Option[Int], next: Option[Int])`
The algorithm should produce a list of node changes like this.
class NodeChange(suggestion: Int, prev: Option[Int], next: Option[Int])
where Option Some represents that the value has changed, and None that the value stays the same.
Remember that in this example we went from Suggestion to Int as a simplification. Like, you can see that the first suggestion is not changed (53=53). The real algorithm will work with suggestions so that Node and NodeChange will contain Suggestion instead of Int, and you will compare suggestions by name, module, kind, and self type
<!--
- Detailed requirements for the feature.
- The performance requirements for the feature.
-->
### Acceptance Criteria & Test Cases
IDE receives order updates as a part of suggestions database updates.
<!--
- Any criteria that must be satisfied for the task to be accepted.
- The test plan for the feature, related to the acceptance criteria.
-->
|
1.0
|
Implement Suggestions Ordering - ### Summary
<!--
- A summary of the task.
-->
This task is related to the Doc Chunks #1697. It is about implementing the suggestions ordering designed in the #1698
### Value
Suggestions ordering is required by IDE to show module-level documentation in the correct order.
<!--
- This section should describe the value of this task.
- This value can be for users, to the team, etc.
-->
### Specification
The task consists of two parts. Extracting the order of module suggestions in the `EnsureCompiledJob` and preparing the update message in the `SuggestionsHandler`
EnsureCompiledJob applies user edits, compiles, and indexes (extracts suggestions) from IR.
- There are two IRs available during the compilation - before and after applying the edits.
- From both IRs extract a list of suggestions using SuggestionBuilder and filter only the module-level ones (modules, atoms and methods)
- Given two lists of top-level suggestions. One represents suggestions from the previous compilation run, and the second represents the suggestions after the user edits are applied (current).
prev: Seq[Suggestion]
curr: Seq[Suggestion]
SuggestionBuilder already preserves the order of suggestions in the module. You need to find if the order is changed after applying the user edits.
Implement `SuggestionOrderDiff.compute(prev, curr)` method returning the Seq[NodeChange] (see [Suggestion Comparison] section below).
- Send the `Seq[NodeChange]` with the `SuggestionsDatabaseModuleUpdateNotification`.
SuggestionsHandler receives the `SuggestionsDatabaseModuleUpdateNotification` and applies the updates.
- Given the `Seq[NodeChange]`, you don't need to store the order in the database, just send it to IDE.
- Before sending, you need to convert `Seq[NodeChange]` to `Seq[IdChange]` where
class NodeChange(suggestion: Suggestion, prev: Option[Suggestion], next: Option[Suggestion])
class IdChange(suggestion: Long, prev: Option[Long], next: Option[Long])
IdChange contains ids of corresponding suggestions in the suggestions database (represented by Long).
You need to implement a method `SuggestionsRepo.get(suggestion: Suggestion): Long` that finds id of the given suggestion. As an example, take a look at the `SuggestionsRepo.remove(Suggestion)` method. It also does the lookup but in addition, removes the suggestion.
- Send the `Seq[IdChange]` with the `SearchProtocol.SuggestionsDatabaseUpdateNotification`
- Document the protocol changes in `docs/lanugage-server/protocol-language-server.md`
Note. Please come up with better naming. I.e., `NodeChange` and `IdChange` names are terrible.
#### Suggestion Comparison
Unlike the database, suggestions extracted from IR don't have stable ids associated with them. Instead, you can distinguish two suggestions by name, module, kind, and self type (see the `SuggestionDiff.compare` method). In other words, in the same scope, there can't be two suggestions with the same name, module, kind, and self type.
Example:
In this example two sequences of suggestions represented as lists of integers. Given that (name, module, kind, self type) is unique in the module-level scope, we can go from Seq[Suggestion] to Seq[Int] (just for the purpose of this example). And the problem boils down to finding the difference between two lists of integers.
Given.
prev: [53, 28, 74]
next: [53, 28, 42, 74]
A case when the user adds a new method (42) to the module.
Result.
The algorithm should produce something like that.
[
(53, prev=same, next=same),
(28, prev=same, next=42 ),
(42, prev=28 , next=74 ),
(74, prev=42 , next=same)
]
We represent suggestions order as a linked list with nodes, where
class Node(suggestion: Int, prev: Option[Int], next: Option[Int])`
The algorithm should produce a list of node changes like this.
class NodeChange(suggestion: Int, prev: Option[Int], next: Option[Int])
where Option Some represents that the value has changed, and None that the value stays the same.
Remember that in this example we went from Suggestion to Int as a simplification. Like, you can see that the first suggestion is not changed (53=53). The real algorithm will work with suggestions so that Node and NodeChange will contain Suggestion instead of Int, and you will compare suggestions by name, module, kind, and self type
<!--
- Detailed requirements for the feature.
- The performance requirements for the feature.
-->
### Acceptance Criteria & Test Cases
IDE receives order updates as a part of suggestions database updates.
<!--
- Any criteria that must be satisfied for the task to be accepted.
- The test plan for the feature, related to the acceptance criteria.
-->
|
non_process
|
implement suggestions ordering summary a summary of the task this task is related to the doc chunks it is about implementing the suggestions ordering designed in the value suggestions ordering is required by ide to show module level documentation in the correct order this section should describe the value of this task this value can be for users to the team etc specification the task consists of two parts extracting the order of module suggestions in the ensurecompiledjob and preparing the update message in the suggestionshandler ensurecompiledjob applies user edits compiles and indexes extracts suggestions from ir there are two irs available during the compilation before and after applying the edits from both irs extract a list of suggestions using suggestionbuilder and filter only the module level ones modules atoms and methods given two lists of top level suggestions one represents suggestions from the previous compilation run and the second represents the suggestions after the user edits are applied current prev seq curr seq suggestionbuilder already preserves the order of suggestions in the module you need to find if the order is changed after applying the user edits implement suggestionorderdiff compute prev curr method returning the seq see section below send the seq with the suggestionsdatabasemoduleupdatenotification suggestionshandler receives the suggestionsdatabasemoduleupdatenotification and applies the updates given the seq you don t need to store the order in the database just send it to ide before sending you need to convert seq to seq where class nodechange suggestion suggestion prev option next option class idchange suggestion long prev option next option idchange contains ids of corresponding suggestions in the suggestions database represented by long you need to implement a method suggestionsrepo get suggestion suggestion long that finds id of the given suggestion as an example take a look at the suggestionsrepo remove suggestion method it also does the lookup but in addition removes the suggestion send the seq with the searchprotocol suggestionsdatabaseupdatenotification document the protocol changes in docs lanugage server protocol language server md note please come up with better naming i e nodechange and idchange names are terrible suggestion comparison unlike the database suggestions extracted from ir don t have stable ids associated with them instead you can distinguish two suggestions by name module kind and self type see the suggestiondiff compare method in other words in the same scope there can t be two suggestions with the same name module kind and self type example in this example two sequences of suggestions represented as lists of integers given that name module kind self type is unique in the module level scope we can go from seq to seq just for the purpose of this example and the problem boils down to finding the difference between two lists of integers given prev next a case when the user adds a new method to the module result the algorithm should produce something like that prev same next same prev same next prev next prev next same we represent suggestions order as a linked list with nodes where class node suggestion int prev option next option the algorithm should produce a list of node changes like this class nodechange suggestion int prev option next option where option some represents that the value has changed and none that the value stays the same remember that in this example we went from suggestion to int as a simplification like you can see that the first suggestion is not changed the real algorithm will work with suggestions so that node and nodechange will contain suggestion instead of int and you will compare suggestions by name module kind and self type detailed requirements for the feature the performance requirements for the feature acceptance criteria test cases ide receives order updates as a part of suggestions database updates any criteria that must be satisfied for the task to be accepted the test plan for the feature related to the acceptance criteria
| 0
|
100,190
| 12,508,213,750
|
IssuesEvent
|
2020-06-02 15:13:48
|
raiden-network/light-client
|
https://api.github.com/repos/raiden-network/light-client
|
closed
|
Create a notification area
|
3 Design ๐จ dApp ๐ฑ
|
## Description
As Chris I would like to have all notifications collected in one area.
There should be a notification area where the user can see a notification about the results of actions even if they did end up navigating out of the specific screen.
## Acceptance criteria
- A drawer-style notification panel where notifications get collected based on type of notification.
## Tasks
Look at the notification panel in the WebUI for consistent design
|
1.0
|
Create a notification area - ## Description
As Chris I would like to have all notifications collected in one area.
There should be a notification area where the user can see a notification about the results of actions even if they did end up navigating out of the specific screen.
## Acceptance criteria
- A drawer-style notification panel where notifications get collected based on type of notification.
## Tasks
Look at the notification panel in the WebUI for consistent design
|
non_process
|
create a notification area description as chris i would like to have all notifications collected in one area there should be a notification area where the user can see a notification about the results of actions even if they did end up navigating out of the specific screen acceptance criteria a drawer style notification panel where notifications get collected based on type of notification tasks look at the notification panel in the webui for consistent design
| 0
|
189,643
| 14,517,000,235
|
IssuesEvent
|
2020-12-13 17:56:45
|
kalexmills/github-vet-tests-dec2020
|
https://api.github.com/repos/kalexmills/github-vet-tests-dec2020
|
closed
|
go-graphite/carbonapi: expr/expr_test.go; 6 LoC
|
fresh test tiny
|
Found a possible issue in [go-graphite/carbonapi](https://www.github.com/go-graphite/carbonapi) at [expr/expr_test.go](https://github.com/go-graphite/carbonapi/blob/286a7fab44b0bd5f69479982886a457de9e5a00d/expr/expr_test.go#L280-L285)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> function call which takes a reference to tt at line 283 may start a goroutine
[Click here to see the code in its original context.](https://github.com/go-graphite/carbonapi/blob/286a7fab44b0bd5f69479982886a457de9e5a00d/expr/expr_test.go#L280-L285)
<details>
<summary>Click here to show the 6 line(s) of Go which triggered the analyzer.</summary>
```go
for _, tt := range tests {
testName := tt.Target
t.Run(testName, func(t *testing.T) {
th.TestEvalExpr(t, &tt)
})
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 286a7fab44b0bd5f69479982886a457de9e5a00d
|
1.0
|
go-graphite/carbonapi: expr/expr_test.go; 6 LoC -
Found a possible issue in [go-graphite/carbonapi](https://www.github.com/go-graphite/carbonapi) at [expr/expr_test.go](https://github.com/go-graphite/carbonapi/blob/286a7fab44b0bd5f69479982886a457de9e5a00d/expr/expr_test.go#L280-L285)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> function call which takes a reference to tt at line 283 may start a goroutine
[Click here to see the code in its original context.](https://github.com/go-graphite/carbonapi/blob/286a7fab44b0bd5f69479982886a457de9e5a00d/expr/expr_test.go#L280-L285)
<details>
<summary>Click here to show the 6 line(s) of Go which triggered the analyzer.</summary>
```go
for _, tt := range tests {
testName := tt.Target
t.Run(testName, func(t *testing.T) {
th.TestEvalExpr(t, &tt)
})
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 286a7fab44b0bd5f69479982886a457de9e5a00d
|
non_process
|
go graphite carbonapi expr expr test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message function call which takes a reference to tt at line may start a goroutine click here to show the line s of go which triggered the analyzer go for tt range tests testname tt target t run testname func t testing t th testevalexpr t tt leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id
| 0
|
771,307
| 27,079,859,658
|
IssuesEvent
|
2023-02-14 13:17:53
|
canonical/maas-ui
|
https://api.github.com/repos/canonical/maas-ui
|
closed
|
Form buttons get squashed on smaller screen sizes
|
Priority: Low Enhancement โจ
|
This is only an issue with the forms that include a "Save and add another" button
<img width="435" alt="Screen Shot 2021-11-25 at 1 54 05 pm" src="https://user-images.githubusercontent.com/361637/143372239-9abf403e-74d7-4d20-9016-b14c0ec45bb1.png">
<img width="371" alt="Screen Shot 2021-11-25 at 1 54 12 pm" src="https://user-images.githubusercontent.com/361637/143372244-3b870cf7-0adf-422f-96b6-1073c754b9b7.png">
_Originally posted by @huwshimi in https://github.com/canonical-web-and-design/maas-ui/pull/3331#pullrequestreview-815517294_
|
1.0
|
Form buttons get squashed on smaller screen sizes - This is only an issue with the forms that include a "Save and add another" button
<img width="435" alt="Screen Shot 2021-11-25 at 1 54 05 pm" src="https://user-images.githubusercontent.com/361637/143372239-9abf403e-74d7-4d20-9016-b14c0ec45bb1.png">
<img width="371" alt="Screen Shot 2021-11-25 at 1 54 12 pm" src="https://user-images.githubusercontent.com/361637/143372244-3b870cf7-0adf-422f-96b6-1073c754b9b7.png">
_Originally posted by @huwshimi in https://github.com/canonical-web-and-design/maas-ui/pull/3331#pullrequestreview-815517294_
|
non_process
|
form buttons get squashed on smaller screen sizes this is only an issue with the forms that include a save and add another button img width alt screen shot at pm src img width alt screen shot at pm src originally posted by huwshimi in
| 0
|
15,827
| 20,020,409,405
|
IssuesEvent
|
2022-02-01 15:55:19
|
prisma/prisma
|
https://api.github.com/repos/prisma/prisma
|
opened
|
MongoDB: On ID fields, replace `@default(dbgenerated())` with `@default(auto())`
|
process/candidate team/migrations topic: mongodb
|
`dbgenerated()` without argument will be deprecated, and is not specific on what happens. `@default(auto())` will:
- Be a new default value that is only valid on `@id` fields on mongodb
- Specifically mean "auto-generated object-id, generated by the database"
- Disconnect the validation from native types
- The current rule is: if any field has any native type, it has to have an @default(dbgenerated()) default.
- The new rule will be: `@default(dbgenerated())` is not valid on MongoDB. `@default(auto())` is valid on ID fields with a type of `String @db.ObjectId`.
Internal design doc: https://www.notion.so/prismaio/Design-discussion-default-dbgenerated-on-MongoDB-b00073e4e86d45afa501c30719b703d0
|
1.0
|
MongoDB: On ID fields, replace `@default(dbgenerated())` with `@default(auto())` - `dbgenerated()` without argument will be deprecated, and is not specific on what happens. `@default(auto())` will:
- Be a new default value that is only valid on `@id` fields on mongodb
- Specifically mean "auto-generated object-id, generated by the database"
- Disconnect the validation from native types
- The current rule is: if any field has any native type, it has to have an @default(dbgenerated()) default.
- The new rule will be: `@default(dbgenerated())` is not valid on MongoDB. `@default(auto())` is valid on ID fields with a type of `String @db.ObjectId`.
Internal design doc: https://www.notion.so/prismaio/Design-discussion-default-dbgenerated-on-MongoDB-b00073e4e86d45afa501c30719b703d0
|
process
|
mongodb on id fields replace default dbgenerated with default auto dbgenerated without argument will be deprecated and is not specific on what happens default auto will be a new default value that is only valid on id fields on mongodb specifically mean auto generated object id generated by the database disconnect the validation from native types the current rule is if any field has any native type it has to have an default dbgenerated default the new rule will be default dbgenerated is not valid on mongodb default auto is valid on id fields with a type of string db objectid internal design doc
| 1
|
9,206
| 12,239,299,363
|
IssuesEvent
|
2020-05-04 21:24:29
|
MicrosoftDocs/azure-devops-docs
|
https://api.github.com/repos/MicrosoftDocs/azure-devops-docs
|
closed
|
Timeline for queuing policies
|
Pri1 devops-cicd-process/tech devops/prod
|
Is Queuing policies on an immediate roadmap? I cant see it in the feature timeline. This is very important for us in case for legacy platforms. Manually cancelling an earlier build run is a chore?
This was always one of the strong suites of Azure Pipelines.
---
#### Document Details
โ *Do not edit this section. It is required for docs.microsoft.com โ GitHub issue linking.*
* ID: 4266f72c-c774-0046-4593-d01eb775d3c3
* Version Independent ID: f20827aa-a6c5-96a8-5969-e576ffbc2e38
* Content: [Stages in Azure Pipelines - Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/stages?view=azure-devops&tabs=yaml#feedback)
* Content Source: [docs/pipelines/process/stages.md](https://github.com/MicrosoftDocs/azure-devops-docs/blob/master/docs/pipelines/process/stages.md)
* Product: **devops**
* Technology: **devops-cicd-process**
* GitHub Login: @juliakm
* Microsoft Alias: **jukullam**
|
1.0
|
Timeline for queuing policies - Is Queuing policies on an immediate roadmap? I cant see it in the feature timeline. This is very important for us in case for legacy platforms. Manually cancelling an earlier build run is a chore?
This was always one of the strong suites of Azure Pipelines.
---
#### Document Details
โ *Do not edit this section. It is required for docs.microsoft.com โ GitHub issue linking.*
* ID: 4266f72c-c774-0046-4593-d01eb775d3c3
* Version Independent ID: f20827aa-a6c5-96a8-5969-e576ffbc2e38
* Content: [Stages in Azure Pipelines - Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/stages?view=azure-devops&tabs=yaml#feedback)
* Content Source: [docs/pipelines/process/stages.md](https://github.com/MicrosoftDocs/azure-devops-docs/blob/master/docs/pipelines/process/stages.md)
* Product: **devops**
* Technology: **devops-cicd-process**
* GitHub Login: @juliakm
* Microsoft Alias: **jukullam**
|
process
|
timeline for queuing policies is queuing policies on an immediate roadmap i cant see it in the feature timeline this is very important for us in case for legacy platforms manually cancelling an earlier build run is a chore this was always one of the strong suites of azure pipelines document details โ do not edit this section it is required for docs microsoft com โ github issue linking id version independent id content content source product devops technology devops cicd process github login juliakm microsoft alias jukullam
| 1
|
15,699
| 9,014,764,471
|
IssuesEvent
|
2019-02-05 23:33:20
|
scala/bug
|
https://api.github.com/repos/scala/bug
|
closed
|
drop, take and slice methods on VectorIterator should not consume linear time
|
collections good first issue has PR help wanted performance
|
As an `IndexedSeq`, `VectorIterator` does not implement its own `drop`, `take` and `slice` at the moment.
The default implementation in `Iterator` takes linear time.
This issue also affects views of `Vector` s.
|
True
|
drop, take and slice methods on VectorIterator should not consume linear time - As an `IndexedSeq`, `VectorIterator` does not implement its own `drop`, `take` and `slice` at the moment.
The default implementation in `Iterator` takes linear time.
This issue also affects views of `Vector` s.
|
non_process
|
drop take and slice methods on vectoriterator should not consume linear time as an indexedseq vectoriterator does not implement its own drop take and slice at the moment the default implementation in iterator takes linear time this issue also affects views of vector s
| 0
|
322,443
| 27,604,261,499
|
IssuesEvent
|
2023-03-09 11:58:43
|
interlay/interbtc-ui
|
https://api.github.com/repos/interlay/interbtc-ui
|
opened
|
[Feature] Show available to lend assets in main page
|
testnet-competition
|
Show available to lend assets in the dapp main page
|
1.0
|
[Feature] Show available to lend assets in main page - Show available to lend assets in the dapp main page
|
non_process
|
show available to lend assets in main page show available to lend assets in the dapp main page
| 0
|
5,711
| 8,565,149,000
|
IssuesEvent
|
2018-11-09 18:56:43
|
easy-software-ufal/annotations_repos
|
https://api.github.com/repos/easy-software-ufal/annotations_repos
|
opened
|
autofac/Autofac Autofac.Integration.Mef does not support generic exports
|
ADA C# wrong processing
|
Issue: `https://github.com/autofac/Autofac/issues/384`
PR: `null`
|
1.0
|
autofac/Autofac Autofac.Integration.Mef does not support generic exports - Issue: `https://github.com/autofac/Autofac/issues/384`
PR: `null`
|
process
|
autofac autofac autofac integration mef does not support generic exports issue pr null
| 1
|
144,420
| 11,615,981,111
|
IssuesEvent
|
2020-02-26 15:01:37
|
timberio/vector
|
https://api.github.com/repos/timberio/vector
|
opened
|
Add fuzz and/or model based tests for nested path parsers
|
domain: testing
|
As was proposed by @lukesteensen in https://github.com/timberio/vector/pull/1902#pullrequestreview-364262096, it makes sense to try to test the [path parser](https://github.com/timberio/vector/blob/master/src/event/util/log/path_iter.rs) for nested fields keys using advanced testing techniques. These include fuzz testing and model-based testing against `serde_json::Value::pointer`.
|
1.0
|
Add fuzz and/or model based tests for nested path parsers - As was proposed by @lukesteensen in https://github.com/timberio/vector/pull/1902#pullrequestreview-364262096, it makes sense to try to test the [path parser](https://github.com/timberio/vector/blob/master/src/event/util/log/path_iter.rs) for nested fields keys using advanced testing techniques. These include fuzz testing and model-based testing against `serde_json::Value::pointer`.
|
non_process
|
add fuzz and or model based tests for nested path parsers as was proposed by lukesteensen in it makes sense to try to test the for nested fields keys using advanced testing techniques these include fuzz testing and model based testing against serde json value pointer
| 0
|
21,097
| 28,048,207,198
|
IssuesEvent
|
2023-03-29 02:00:08
|
lizhihao6/get-daily-arxiv-noti
|
https://api.github.com/repos/lizhihao6/get-daily-arxiv-noti
|
opened
|
New submissions for Wed, 29 Mar 23
|
event camera white balance isp compression image signal processing image signal process raw raw image events camera color contrast events AWB
|
## Keyword: events
### Real-time Multi-person Eyeblink Detection in the Wild for Untrimmed Video
- **Authors:** Wenzheng Zeng, Yang Xiao, Sicheng Wei, Jinfang Gan, Xintao Zhang, Zhiguo Cao, Zhiwen Fang, Joey Tianyi Zhou
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV)
- **Arxiv link:** https://arxiv.org/abs/2303.16053
- **Pdf link:** https://arxiv.org/pdf/2303.16053
- **Abstract**
Real-time eyeblink detection in the wild can widely serve for fatigue detection, face anti-spoofing, emotion analysis, etc. The existing research efforts generally focus on single-person cases towards trimmed video. However, multi-person scenario within untrimmed videos is also important for practical applications, which has not been well concerned yet. To address this, we shed light on this research field for the first time with essential contributions on dataset, theory, and practices. In particular, a large-scale dataset termed MPEblink that involves 686 untrimmed videos with 8748 eyeblink events is proposed under multi-person conditions. The samples are captured from unconstrained films to reveal "in the wild" characteristics. Meanwhile, a real-time multi-person eyeblink detection method is also proposed. Being different from the existing counterparts, our proposition runs in a one-stage spatio-temporal way with end-to-end learning capacity. Specifically, it simultaneously addresses the sub-tasks of face detection, face tracking, and human instance-level eyeblink detection. This paradigm holds 2 main advantages: (1) eyeblink features can be facilitated via the face's global context (e.g., head pose and illumination condition) with joint optimization and interaction, and (2) addressing these sub-tasks in parallel instead of sequential manner can save time remarkably to meet the real-time running requirement. Experiments on MPEblink verify the essential challenges of real-time multi-person eyeblink detection in the wild for untrimmed video. Our method also outperforms existing approaches by large margins and with a high inference speed.
## Keyword: event camera
There is no result
## Keyword: events camera
There is no result
## Keyword: white balance
There is no result
## Keyword: color contrast
There is no result
## Keyword: AWB
### GP3D: Generalized Pose Estimation in 3D Point Clouds: A case study on bin picking
- **Authors:** Frederik Hagelskjรฆr
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV)
- **Arxiv link:** https://arxiv.org/abs/2303.16102
- **Pdf link:** https://arxiv.org/pdf/2303.16102
- **Abstract**
In this paper, we present GP3D, a novel network for generalized pose estimation in 3D point clouds. The method generalizes to new objects by using both the scene point cloud and the object point cloud with keypoint indexes as input. The network is trained to match the object keypoints to scene points. To address the pose estimation of novel objects we also present a new approach for training pose estimation. The typical solution is a single model trained for pose estimation of a specific object in any scenario. This has several drawbacks: training a model for each object is time-consuming, energy consuming, and by excluding the scenario information the task becomes more difficult. In this paper, we present the opposite solution; a scenario-specific pose estimation method for novel objects that do not require retraining. The network is trained on 1500 objects and is able to learn a generalized solution. We demonstrate that the network is able to correctly predict novel objects, and demonstrate the ability of the network to perform outside of the trained class. We believe that the demonstrated method is a valuable solution for many real-world scenarios. Code and trained network will be made available after publication.
## Keyword: ISP
### Forecasting localized weather impacts on vegetation as seen from space with meteo-guided video prediction
- **Authors:** Vitus Benson, Christian Requena-Mesa, Claire Robin, Lazaro Alonso, Josรฉ Cortรฉs, Zhihan Gao, Nora Linscheid, Mรฉlanie Weynants, Markus Reichstein
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV); Machine Learning (cs.LG)
- **Arxiv link:** https://arxiv.org/abs/2303.16198
- **Pdf link:** https://arxiv.org/pdf/2303.16198
- **Abstract**
We present a novel approach for modeling vegetation response to weather in Europe as measured by the Sentinel 2 satellite. Existing satellite imagery forecasting approaches focus on photorealistic quality of the multispectral images, while derived vegetation dynamics have not yet received as much attention. We leverage both spatial and temporal context by extending state-of-the-art video prediction methods with weather guidance. We extend the EarthNet2021 dataset to be suitable for vegetation modeling by introducing a learned cloud mask and an appropriate evaluation scheme. Qualitative and quantitative experiments demonstrate superior performance of our approach over a wide variety of baseline methods, including leading approaches to satellite imagery forecasting. Additionally, we show how our modeled vegetation dynamics can be leveraged in a downstream task: inferring gross primary productivity for carbon monitoring. To the best of our knowledge, this work presents the first models for continental-scale vegetation modeling at fine resolution able to capture anomalies beyond the seasonal cycle, thereby paving the way for predictive assessments of vegetation status.
## Keyword: image signal processing
There is no result
## Keyword: image signal process
There is no result
## Keyword: compression
### Information-Theoretic GAN Compression with Variational Energy-based Model
- **Authors:** Minsoo Kang, Hyewon Yoo, Eunhee Kang, Sehwan Ki, Hyong-Euk Lee, Bohyung Han
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV); Machine Learning (cs.LG)
- **Arxiv link:** https://arxiv.org/abs/2303.16050
- **Pdf link:** https://arxiv.org/pdf/2303.16050
- **Abstract**
We propose an information-theoretic knowledge distillation approach for the compression of generative adversarial networks, which aims to maximize the mutual information between teacher and student networks via a variational optimization based on an energy-based model. Because the direct computation of the mutual information in continuous domains is intractable, our approach alternatively optimizes the student network by maximizing the variational lower bound of the mutual information. To achieve a tight lower bound, we introduce an energy-based model relying on a deep neural network to represent a flexible variational distribution that deals with high-dimensional images and consider spatial dependencies between pixels, effectively. Since the proposed method is a generic optimization algorithm, it can be conveniently incorporated into arbitrary generative adversarial networks and even dense prediction networks, e.g., image enhancement models. We demonstrate that the proposed algorithm achieves outstanding performance in model compression of generative adversarial networks consistently when combined with several existing models.
## Keyword: RAW
### Few-Shot Domain Adaptation for Low Light RAW Image Enhancement
- **Authors:** K. Ram Prabhakar, Vishal Vinod, Nihar Ranjan Sahoo, R. Venkatesh Babu
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV); Image and Video Processing (eess.IV)
- **Arxiv link:** https://arxiv.org/abs/2303.15528
- **Pdf link:** https://arxiv.org/pdf/2303.15528
- **Abstract**
Enhancing practical low light raw images is a difficult task due to severe noise and color distortions from short exposure time and limited illumination. Despite the success of existing Convolutional Neural Network (CNN) based methods, their performance is not adaptable to different camera domains. In addition, such methods also require large datasets with short-exposure and corresponding long-exposure ground truth raw images for each camera domain, which is tedious to compile. To address this issue, we present a novel few-shot domain adaptation method to utilize the existing source camera labeled data with few labeled samples from the target camera to improve the target domain's enhancement quality in extreme low-light imaging. Our experiments show that only ten or fewer labeled samples from the target camera domain are sufficient to achieve similar or better enhancement performance than training a model with a large labeled target camera dataset. To support research in this direction, we also present a new low-light raw image dataset captured with a Nikon camera, comprising short-exposure and their corresponding long-exposure ground truth images.
### GP3D: Generalized Pose Estimation in 3D Point Clouds: A case study on bin picking
- **Authors:** Frederik Hagelskjรฆr
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV)
- **Arxiv link:** https://arxiv.org/abs/2303.16102
- **Pdf link:** https://arxiv.org/pdf/2303.16102
- **Abstract**
In this paper, we present GP3D, a novel network for generalized pose estimation in 3D point clouds. The method generalizes to new objects by using both the scene point cloud and the object point cloud with keypoint indexes as input. The network is trained to match the object keypoints to scene points. To address the pose estimation of novel objects we also present a new approach for training pose estimation. The typical solution is a single model trained for pose estimation of a specific object in any scenario. This has several drawbacks: training a model for each object is time-consuming, energy consuming, and by excluding the scenario information the task becomes more difficult. In this paper, we present the opposite solution; a scenario-specific pose estimation method for novel objects that do not require retraining. The network is trained on 1500 objects and is able to learn a generalized solution. We demonstrate that the network is able to correctly predict novel objects, and demonstrate the ability of the network to perform outside of the trained class. We believe that the demonstrated method is a valuable solution for many real-world scenarios. Code and trained network will be made available after publication.
### CycleACR: Cycle Modeling of Actor-Context Relations for Video Action Detection
- **Authors:** Lei Chen, Zhan Tong, Yibing Song, Gangshan Wu, Limin Wang
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV)
- **Arxiv link:** https://arxiv.org/abs/2303.16118
- **Pdf link:** https://arxiv.org/pdf/2303.16118
- **Abstract**
The relation modeling between actors and scene context advances video action detection where the correlation of multiple actors makes their action recognition challenging. Existing studies model each actor and scene relation to improve action recognition. However, the scene variations and background interference limit the effectiveness of this relation modeling. In this paper, we propose to select actor-related scene context, rather than directly leverage raw video scenario, to improve relation modeling. We develop a Cycle Actor-Context Relation network (CycleACR) where there is a symmetric graph that models the actor and context relations in a bidirectional form. Our CycleACR consists of the Actor-to-Context Reorganization (A2C-R) that collects actor features for context feature reorganizations, and the Context-to-Actor Enhancement (C2A-E) that dynamically utilizes reorganized context features for actor feature enhancement. Compared to existing designs that focus on C2A-E, our CycleACR introduces A2C-R for a more effective relation modeling. This modeling advances our CycleACR to achieve state-of-the-art performance on two popular action detection datasets (i.e., AVA and UCF101-24). We also provide ablation studies and visualizations as well to show how our cycle actor-context relation modeling improves video action detection. Code is available at https://github.com/MCG-NJU/CycleACR.
## Keyword: raw image
### Few-Shot Domain Adaptation for Low Light RAW Image Enhancement
- **Authors:** K. Ram Prabhakar, Vishal Vinod, Nihar Ranjan Sahoo, R. Venkatesh Babu
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV); Image and Video Processing (eess.IV)
- **Arxiv link:** https://arxiv.org/abs/2303.15528
- **Pdf link:** https://arxiv.org/pdf/2303.15528
- **Abstract**
Enhancing practical low light raw images is a difficult task due to severe noise and color distortions from short exposure time and limited illumination. Despite the success of existing Convolutional Neural Network (CNN) based methods, their performance is not adaptable to different camera domains. In addition, such methods also require large datasets with short-exposure and corresponding long-exposure ground truth raw images for each camera domain, which is tedious to compile. To address this issue, we present a novel few-shot domain adaptation method to utilize the existing source camera labeled data with few labeled samples from the target camera to improve the target domain's enhancement quality in extreme low-light imaging. Our experiments show that only ten or fewer labeled samples from the target camera domain are sufficient to achieve similar or better enhancement performance than training a model with a large labeled target camera dataset. To support research in this direction, we also present a new low-light raw image dataset captured with a Nikon camera, comprising short-exposure and their corresponding long-exposure ground truth images.
|
2.0
|
New submissions for Wed, 29 Mar 23 - ## Keyword: events
### Real-time Multi-person Eyeblink Detection in the Wild for Untrimmed Video
- **Authors:** Wenzheng Zeng, Yang Xiao, Sicheng Wei, Jinfang Gan, Xintao Zhang, Zhiguo Cao, Zhiwen Fang, Joey Tianyi Zhou
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV)
- **Arxiv link:** https://arxiv.org/abs/2303.16053
- **Pdf link:** https://arxiv.org/pdf/2303.16053
- **Abstract**
Real-time eyeblink detection in the wild can widely serve for fatigue detection, face anti-spoofing, emotion analysis, etc. The existing research efforts generally focus on single-person cases towards trimmed video. However, multi-person scenario within untrimmed videos is also important for practical applications, which has not been well concerned yet. To address this, we shed light on this research field for the first time with essential contributions on dataset, theory, and practices. In particular, a large-scale dataset termed MPEblink that involves 686 untrimmed videos with 8748 eyeblink events is proposed under multi-person conditions. The samples are captured from unconstrained films to reveal "in the wild" characteristics. Meanwhile, a real-time multi-person eyeblink detection method is also proposed. Being different from the existing counterparts, our proposition runs in a one-stage spatio-temporal way with end-to-end learning capacity. Specifically, it simultaneously addresses the sub-tasks of face detection, face tracking, and human instance-level eyeblink detection. This paradigm holds 2 main advantages: (1) eyeblink features can be facilitated via the face's global context (e.g., head pose and illumination condition) with joint optimization and interaction, and (2) addressing these sub-tasks in parallel instead of sequential manner can save time remarkably to meet the real-time running requirement. Experiments on MPEblink verify the essential challenges of real-time multi-person eyeblink detection in the wild for untrimmed video. Our method also outperforms existing approaches by large margins and with a high inference speed.
## Keyword: event camera
There is no result
## Keyword: events camera
There is no result
## Keyword: white balance
There is no result
## Keyword: color contrast
There is no result
## Keyword: AWB
### GP3D: Generalized Pose Estimation in 3D Point Clouds: A case study on bin picking
- **Authors:** Frederik Hagelskjรฆr
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV)
- **Arxiv link:** https://arxiv.org/abs/2303.16102
- **Pdf link:** https://arxiv.org/pdf/2303.16102
- **Abstract**
In this paper, we present GP3D, a novel network for generalized pose estimation in 3D point clouds. The method generalizes to new objects by using both the scene point cloud and the object point cloud with keypoint indexes as input. The network is trained to match the object keypoints to scene points. To address the pose estimation of novel objects we also present a new approach for training pose estimation. The typical solution is a single model trained for pose estimation of a specific object in any scenario. This has several drawbacks: training a model for each object is time-consuming, energy consuming, and by excluding the scenario information the task becomes more difficult. In this paper, we present the opposite solution; a scenario-specific pose estimation method for novel objects that do not require retraining. The network is trained on 1500 objects and is able to learn a generalized solution. We demonstrate that the network is able to correctly predict novel objects, and demonstrate the ability of the network to perform outside of the trained class. We believe that the demonstrated method is a valuable solution for many real-world scenarios. Code and trained network will be made available after publication.
## Keyword: ISP
### Forecasting localized weather impacts on vegetation as seen from space with meteo-guided video prediction
- **Authors:** Vitus Benson, Christian Requena-Mesa, Claire Robin, Lazaro Alonso, Josรฉ Cortรฉs, Zhihan Gao, Nora Linscheid, Mรฉlanie Weynants, Markus Reichstein
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV); Machine Learning (cs.LG)
- **Arxiv link:** https://arxiv.org/abs/2303.16198
- **Pdf link:** https://arxiv.org/pdf/2303.16198
- **Abstract**
We present a novel approach for modeling vegetation response to weather in Europe as measured by the Sentinel 2 satellite. Existing satellite imagery forecasting approaches focus on photorealistic quality of the multispectral images, while derived vegetation dynamics have not yet received as much attention. We leverage both spatial and temporal context by extending state-of-the-art video prediction methods with weather guidance. We extend the EarthNet2021 dataset to be suitable for vegetation modeling by introducing a learned cloud mask and an appropriate evaluation scheme. Qualitative and quantitative experiments demonstrate superior performance of our approach over a wide variety of baseline methods, including leading approaches to satellite imagery forecasting. Additionally, we show how our modeled vegetation dynamics can be leveraged in a downstream task: inferring gross primary productivity for carbon monitoring. To the best of our knowledge, this work presents the first models for continental-scale vegetation modeling at fine resolution able to capture anomalies beyond the seasonal cycle, thereby paving the way for predictive assessments of vegetation status.
## Keyword: image signal processing
There is no result
## Keyword: image signal process
There is no result
## Keyword: compression
### Information-Theoretic GAN Compression with Variational Energy-based Model
- **Authors:** Minsoo Kang, Hyewon Yoo, Eunhee Kang, Sehwan Ki, Hyong-Euk Lee, Bohyung Han
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV); Machine Learning (cs.LG)
- **Arxiv link:** https://arxiv.org/abs/2303.16050
- **Pdf link:** https://arxiv.org/pdf/2303.16050
- **Abstract**
We propose an information-theoretic knowledge distillation approach for the compression of generative adversarial networks, which aims to maximize the mutual information between teacher and student networks via a variational optimization based on an energy-based model. Because the direct computation of the mutual information in continuous domains is intractable, our approach alternatively optimizes the student network by maximizing the variational lower bound of the mutual information. To achieve a tight lower bound, we introduce an energy-based model relying on a deep neural network to represent a flexible variational distribution that deals with high-dimensional images and consider spatial dependencies between pixels, effectively. Since the proposed method is a generic optimization algorithm, it can be conveniently incorporated into arbitrary generative adversarial networks and even dense prediction networks, e.g., image enhancement models. We demonstrate that the proposed algorithm achieves outstanding performance in model compression of generative adversarial networks consistently when combined with several existing models.
## Keyword: RAW
### Few-Shot Domain Adaptation for Low Light RAW Image Enhancement
- **Authors:** K. Ram Prabhakar, Vishal Vinod, Nihar Ranjan Sahoo, R. Venkatesh Babu
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV); Image and Video Processing (eess.IV)
- **Arxiv link:** https://arxiv.org/abs/2303.15528
- **Pdf link:** https://arxiv.org/pdf/2303.15528
- **Abstract**
Enhancing practical low light raw images is a difficult task due to severe noise and color distortions from short exposure time and limited illumination. Despite the success of existing Convolutional Neural Network (CNN) based methods, their performance is not adaptable to different camera domains. In addition, such methods also require large datasets with short-exposure and corresponding long-exposure ground truth raw images for each camera domain, which is tedious to compile. To address this issue, we present a novel few-shot domain adaptation method to utilize the existing source camera labeled data with few labeled samples from the target camera to improve the target domain's enhancement quality in extreme low-light imaging. Our experiments show that only ten or fewer labeled samples from the target camera domain are sufficient to achieve similar or better enhancement performance than training a model with a large labeled target camera dataset. To support research in this direction, we also present a new low-light raw image dataset captured with a Nikon camera, comprising short-exposure and their corresponding long-exposure ground truth images.
### GP3D: Generalized Pose Estimation in 3D Point Clouds: A case study on bin picking
- **Authors:** Frederik Hagelskjรฆr
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV)
- **Arxiv link:** https://arxiv.org/abs/2303.16102
- **Pdf link:** https://arxiv.org/pdf/2303.16102
- **Abstract**
In this paper, we present GP3D, a novel network for generalized pose estimation in 3D point clouds. The method generalizes to new objects by using both the scene point cloud and the object point cloud with keypoint indexes as input. The network is trained to match the object keypoints to scene points. To address the pose estimation of novel objects we also present a new approach for training pose estimation. The typical solution is a single model trained for pose estimation of a specific object in any scenario. This has several drawbacks: training a model for each object is time-consuming, energy consuming, and by excluding the scenario information the task becomes more difficult. In this paper, we present the opposite solution; a scenario-specific pose estimation method for novel objects that do not require retraining. The network is trained on 1500 objects and is able to learn a generalized solution. We demonstrate that the network is able to correctly predict novel objects, and demonstrate the ability of the network to perform outside of the trained class. We believe that the demonstrated method is a valuable solution for many real-world scenarios. Code and trained network will be made available after publication.
### CycleACR: Cycle Modeling of Actor-Context Relations for Video Action Detection
- **Authors:** Lei Chen, Zhan Tong, Yibing Song, Gangshan Wu, Limin Wang
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV)
- **Arxiv link:** https://arxiv.org/abs/2303.16118
- **Pdf link:** https://arxiv.org/pdf/2303.16118
- **Abstract**
The relation modeling between actors and scene context advances video action detection where the correlation of multiple actors makes their action recognition challenging. Existing studies model each actor and scene relation to improve action recognition. However, the scene variations and background interference limit the effectiveness of this relation modeling. In this paper, we propose to select actor-related scene context, rather than directly leverage raw video scenario, to improve relation modeling. We develop a Cycle Actor-Context Relation network (CycleACR) where there is a symmetric graph that models the actor and context relations in a bidirectional form. Our CycleACR consists of the Actor-to-Context Reorganization (A2C-R) that collects actor features for context feature reorganizations, and the Context-to-Actor Enhancement (C2A-E) that dynamically utilizes reorganized context features for actor feature enhancement. Compared to existing designs that focus on C2A-E, our CycleACR introduces A2C-R for a more effective relation modeling. This modeling advances our CycleACR to achieve state-of-the-art performance on two popular action detection datasets (i.e., AVA and UCF101-24). We also provide ablation studies and visualizations as well to show how our cycle actor-context relation modeling improves video action detection. Code is available at https://github.com/MCG-NJU/CycleACR.
## Keyword: raw image
### Few-Shot Domain Adaptation for Low Light RAW Image Enhancement
- **Authors:** K. Ram Prabhakar, Vishal Vinod, Nihar Ranjan Sahoo, R. Venkatesh Babu
- **Subjects:** Computer Vision and Pattern Recognition (cs.CV); Image and Video Processing (eess.IV)
- **Arxiv link:** https://arxiv.org/abs/2303.15528
- **Pdf link:** https://arxiv.org/pdf/2303.15528
- **Abstract**
Enhancing practical low light raw images is a difficult task due to severe noise and color distortions from short exposure time and limited illumination. Despite the success of existing Convolutional Neural Network (CNN) based methods, their performance is not adaptable to different camera domains. In addition, such methods also require large datasets with short-exposure and corresponding long-exposure ground truth raw images for each camera domain, which is tedious to compile. To address this issue, we present a novel few-shot domain adaptation method to utilize the existing source camera labeled data with few labeled samples from the target camera to improve the target domain's enhancement quality in extreme low-light imaging. Our experiments show that only ten or fewer labeled samples from the target camera domain are sufficient to achieve similar or better enhancement performance than training a model with a large labeled target camera dataset. To support research in this direction, we also present a new low-light raw image dataset captured with a Nikon camera, comprising short-exposure and their corresponding long-exposure ground truth images.
|
process
|
new submissions for wed mar keyword events real time multi person eyeblink detection in the wild for untrimmed video authors wenzheng zeng yang xiao sicheng wei jinfang gan xintao zhang zhiguo cao zhiwen fang joey tianyi zhou subjects computer vision and pattern recognition cs cv arxiv link pdf link abstract real time eyeblink detection in the wild can widely serve for fatigue detection face anti spoofing emotion analysis etc the existing research efforts generally focus on single person cases towards trimmed video however multi person scenario within untrimmed videos is also important for practical applications which has not been well concerned yet to address this we shed light on this research field for the first time with essential contributions on dataset theory and practices in particular a large scale dataset termed mpeblink that involves untrimmed videos with eyeblink events is proposed under multi person conditions the samples are captured from unconstrained films to reveal in the wild characteristics meanwhile a real time multi person eyeblink detection method is also proposed being different from the existing counterparts our proposition runs in a one stage spatio temporal way with end to end learning capacity specifically it simultaneously addresses the sub tasks of face detection face tracking and human instance level eyeblink detection this paradigm holds main advantages eyeblink features can be facilitated via the face s global context e g head pose and illumination condition with joint optimization and interaction and addressing these sub tasks in parallel instead of sequential manner can save time remarkably to meet the real time running requirement experiments on mpeblink verify the essential challenges of real time multi person eyeblink detection in the wild for untrimmed video our method also outperforms existing approaches by large margins and with a high inference speed keyword event camera there is no result keyword events camera there is no result keyword white balance there is no result keyword color contrast there is no result keyword awb generalized pose estimation in point clouds a case study on bin picking authors frederik hagelskjรฆr subjects computer vision and pattern recognition cs cv arxiv link pdf link abstract in this paper we present a novel network for generalized pose estimation in point clouds the method generalizes to new objects by using both the scene point cloud and the object point cloud with keypoint indexes as input the network is trained to match the object keypoints to scene points to address the pose estimation of novel objects we also present a new approach for training pose estimation the typical solution is a single model trained for pose estimation of a specific object in any scenario this has several drawbacks training a model for each object is time consuming energy consuming and by excluding the scenario information the task becomes more difficult in this paper we present the opposite solution a scenario specific pose estimation method for novel objects that do not require retraining the network is trained on objects and is able to learn a generalized solution we demonstrate that the network is able to correctly predict novel objects and demonstrate the ability of the network to perform outside of the trained class we believe that the demonstrated method is a valuable solution for many real world scenarios code and trained network will be made available after publication keyword isp forecasting localized weather impacts on vegetation as seen from space with meteo guided video prediction authors vitus benson christian requena mesa claire robin lazaro alonso josรฉ cortรฉs zhihan gao nora linscheid mรฉlanie weynants markus reichstein subjects computer vision and pattern recognition cs cv machine learning cs lg arxiv link pdf link abstract we present a novel approach for modeling vegetation response to weather in europe as measured by the sentinel satellite existing satellite imagery forecasting approaches focus on photorealistic quality of the multispectral images while derived vegetation dynamics have not yet received as much attention we leverage both spatial and temporal context by extending state of the art video prediction methods with weather guidance we extend the dataset to be suitable for vegetation modeling by introducing a learned cloud mask and an appropriate evaluation scheme qualitative and quantitative experiments demonstrate superior performance of our approach over a wide variety of baseline methods including leading approaches to satellite imagery forecasting additionally we show how our modeled vegetation dynamics can be leveraged in a downstream task inferring gross primary productivity for carbon monitoring to the best of our knowledge this work presents the first models for continental scale vegetation modeling at fine resolution able to capture anomalies beyond the seasonal cycle thereby paving the way for predictive assessments of vegetation status keyword image signal processing there is no result keyword image signal process there is no result keyword compression information theoretic gan compression with variational energy based model authors minsoo kang hyewon yoo eunhee kang sehwan ki hyong euk lee bohyung han subjects computer vision and pattern recognition cs cv machine learning cs lg arxiv link pdf link abstract we propose an information theoretic knowledge distillation approach for the compression of generative adversarial networks which aims to maximize the mutual information between teacher and student networks via a variational optimization based on an energy based model because the direct computation of the mutual information in continuous domains is intractable our approach alternatively optimizes the student network by maximizing the variational lower bound of the mutual information to achieve a tight lower bound we introduce an energy based model relying on a deep neural network to represent a flexible variational distribution that deals with high dimensional images and consider spatial dependencies between pixels effectively since the proposed method is a generic optimization algorithm it can be conveniently incorporated into arbitrary generative adversarial networks and even dense prediction networks e g image enhancement models we demonstrate that the proposed algorithm achieves outstanding performance in model compression of generative adversarial networks consistently when combined with several existing models keyword raw few shot domain adaptation for low light raw image enhancement authors k ram prabhakar vishal vinod nihar ranjan sahoo r venkatesh babu subjects computer vision and pattern recognition cs cv image and video processing eess iv arxiv link pdf link abstract enhancing practical low light raw images is a difficult task due to severe noise and color distortions from short exposure time and limited illumination despite the success of existing convolutional neural network cnn based methods their performance is not adaptable to different camera domains in addition such methods also require large datasets with short exposure and corresponding long exposure ground truth raw images for each camera domain which is tedious to compile to address this issue we present a novel few shot domain adaptation method to utilize the existing source camera labeled data with few labeled samples from the target camera to improve the target domain s enhancement quality in extreme low light imaging our experiments show that only ten or fewer labeled samples from the target camera domain are sufficient to achieve similar or better enhancement performance than training a model with a large labeled target camera dataset to support research in this direction we also present a new low light raw image dataset captured with a nikon camera comprising short exposure and their corresponding long exposure ground truth images generalized pose estimation in point clouds a case study on bin picking authors frederik hagelskjรฆr subjects computer vision and pattern recognition cs cv arxiv link pdf link abstract in this paper we present a novel network for generalized pose estimation in point clouds the method generalizes to new objects by using both the scene point cloud and the object point cloud with keypoint indexes as input the network is trained to match the object keypoints to scene points to address the pose estimation of novel objects we also present a new approach for training pose estimation the typical solution is a single model trained for pose estimation of a specific object in any scenario this has several drawbacks training a model for each object is time consuming energy consuming and by excluding the scenario information the task becomes more difficult in this paper we present the opposite solution a scenario specific pose estimation method for novel objects that do not require retraining the network is trained on objects and is able to learn a generalized solution we demonstrate that the network is able to correctly predict novel objects and demonstrate the ability of the network to perform outside of the trained class we believe that the demonstrated method is a valuable solution for many real world scenarios code and trained network will be made available after publication cycleacr cycle modeling of actor context relations for video action detection authors lei chen zhan tong yibing song gangshan wu limin wang subjects computer vision and pattern recognition cs cv arxiv link pdf link abstract the relation modeling between actors and scene context advances video action detection where the correlation of multiple actors makes their action recognition challenging existing studies model each actor and scene relation to improve action recognition however the scene variations and background interference limit the effectiveness of this relation modeling in this paper we propose to select actor related scene context rather than directly leverage raw video scenario to improve relation modeling we develop a cycle actor context relation network cycleacr where there is a symmetric graph that models the actor and context relations in a bidirectional form our cycleacr consists of the actor to context reorganization r that collects actor features for context feature reorganizations and the context to actor enhancement e that dynamically utilizes reorganized context features for actor feature enhancement compared to existing designs that focus on e our cycleacr introduces r for a more effective relation modeling this modeling advances our cycleacr to achieve state of the art performance on two popular action detection datasets i e ava and we also provide ablation studies and visualizations as well to show how our cycle actor context relation modeling improves video action detection code is available at keyword raw image few shot domain adaptation for low light raw image enhancement authors k ram prabhakar vishal vinod nihar ranjan sahoo r venkatesh babu subjects computer vision and pattern recognition cs cv image and video processing eess iv arxiv link pdf link abstract enhancing practical low light raw images is a difficult task due to severe noise and color distortions from short exposure time and limited illumination despite the success of existing convolutional neural network cnn based methods their performance is not adaptable to different camera domains in addition such methods also require large datasets with short exposure and corresponding long exposure ground truth raw images for each camera domain which is tedious to compile to address this issue we present a novel few shot domain adaptation method to utilize the existing source camera labeled data with few labeled samples from the target camera to improve the target domain s enhancement quality in extreme low light imaging our experiments show that only ten or fewer labeled samples from the target camera domain are sufficient to achieve similar or better enhancement performance than training a model with a large labeled target camera dataset to support research in this direction we also present a new low light raw image dataset captured with a nikon camera comprising short exposure and their corresponding long exposure ground truth images
| 1
|
20,475
| 11,453,828,920
|
IssuesEvent
|
2020-02-06 16:02:15
|
elastic/beats
|
https://api.github.com/repos/elastic/beats
|
opened
|
Proposal: Generalization of reader pipeline in Beats
|
Team:Services [zube]: Meta discuss
|
The reader pipeline consists of the following readers:
- `readfile.EncoderReader`: reads an input with the configured encoding
- `readfile.LineReader`: reads a line from a file
- `readfile.LimitReader`: truncates message if it is too long
- `readfile.StripNewLine`: removes the configured newline characters from the end of the message
- `readfile.TimeoutReader`: flushes the message if the configured time has elapsed
- `multiline.Reader`: creates a single message from multiple ones based on patterns and timeout
- `readjson.DockerJSON`: parses JSON events from Docker
- `readjson.JSONReader`: parses arbitrary JSON events
All of the readers above implement the following `reader.Reader` interface:
```golang
type Reader interface {
Next() (Message, error)
}
```
All readers except for `readfile.EncoderReader` read a `reader.Message` from an underlying `reader.Reader`.
These readers are only exposed and used in `log` input and in `DockerJSON` in `container` input. However, these readers could be reused in more inputs (e.g. `journal`, `tcp`, etc.). It is possible that someone needs to read multiline messages from a systemd journal.
But right now adding this feature to more inputs is not straightforward because the reader pipeline is too tightly coupled with the `log` input. The readers are part of `libbeat`, but they can only be used from Filebeat. In order to provide a similar experience for more Beats, the pipeline has to be generalized.
The first step to generalization is creating a `reader.Pipeline` which is able to create the proper readers based on a configuration. In this version the order of the readers are not configurable. But I don't think that is necessary at this stage.
```golang
type Pipeline struct {
config Config
reader reader.Reader
}
type Config struct {
File readfile.Config
JSON *readjson.Config
Multiline *multiline.Config
// this is a hack to make docker JSON parsing part of the pipeline
DockerJSON *struct {
Stream string `config:"stream"`
Partial bool `config:"partial"`
Format string `config:"format"`
CRIFlags bool `config:"cri_flags"`
}
MaxBytes int
}
```
The "source" parts of inputs have to be decoupled. TCP and UDP inputs were created like this. The concrete data sources are part of the package `inputsource`. More sources can be extracted from inputs to provide flexibility:
- `log`: reads from a log file
- `journal`: reads a journal
The `inputsource`s should implement the interface `oi.Reader` or `reader.Reader` in order to plug into the `reader.Pipeline` easily.
Reporting offsets, etc
TODO
|
1.0
|
Proposal: Generalization of reader pipeline in Beats - The reader pipeline consists of the following readers:
- `readfile.EncoderReader`: reads an input with the configured encoding
- `readfile.LineReader`: reads a line from a file
- `readfile.LimitReader`: truncates message if it is too long
- `readfile.StripNewLine`: removes the configured newline characters from the end of the message
- `readfile.TimeoutReader`: flushes the message if the configured time has elapsed
- `multiline.Reader`: creates a single message from multiple ones based on patterns and timeout
- `readjson.DockerJSON`: parses JSON events from Docker
- `readjson.JSONReader`: parses arbitrary JSON events
All of the readers above implement the following `reader.Reader` interface:
```golang
type Reader interface {
Next() (Message, error)
}
```
All readers except for `readfile.EncoderReader` read a `reader.Message` from an underlying `reader.Reader`.
These readers are only exposed and used in `log` input and in `DockerJSON` in `container` input. However, these readers could be reused in more inputs (e.g. `journal`, `tcp`, etc.). It is possible that someone needs to read multiline messages from a systemd journal.
But right now adding this feature to more inputs is not straightforward because the reader pipeline is too tightly coupled with the `log` input. The readers are part of `libbeat`, but they can only be used from Filebeat. In order to provide a similar experience for more Beats, the pipeline has to be generalized.
The first step to generalization is creating a `reader.Pipeline` which is able to create the proper readers based on a configuration. In this version the order of the readers are not configurable. But I don't think that is necessary at this stage.
```golang
type Pipeline struct {
config Config
reader reader.Reader
}
type Config struct {
File readfile.Config
JSON *readjson.Config
Multiline *multiline.Config
// this is a hack to make docker JSON parsing part of the pipeline
DockerJSON *struct {
Stream string `config:"stream"`
Partial bool `config:"partial"`
Format string `config:"format"`
CRIFlags bool `config:"cri_flags"`
}
MaxBytes int
}
```
The "source" parts of inputs have to be decoupled. TCP and UDP inputs were created like this. The concrete data sources are part of the package `inputsource`. More sources can be extracted from inputs to provide flexibility:
- `log`: reads from a log file
- `journal`: reads a journal
The `inputsource`s should implement the interface `oi.Reader` or `reader.Reader` in order to plug into the `reader.Pipeline` easily.
Reporting offsets, etc
TODO
|
non_process
|
proposal generalization of reader pipeline in beats the reader pipeline consists of the following readers readfile encoderreader reads an input with the configured encoding readfile linereader reads a line from a file readfile limitreader truncates message if it is too long readfile stripnewline removes the configured newline characters from the end of the message readfile timeoutreader flushes the message if the configured time has elapsed multiline reader creates a single message from multiple ones based on patterns and timeout readjson dockerjson parses json events from docker readjson jsonreader parses arbitrary json events all of the readers above implement the following reader reader interface golang type reader interface next message error all readers except for readfile encoderreader read a reader message from an underlying reader reader these readers are only exposed and used in log input and in dockerjson in container input however these readers could be reused in more inputs e g journal tcp etc it is possible that someone needs to read multiline messages from a systemd journal but right now adding this feature to more inputs is not straightforward because the reader pipeline is too tightly coupled with the log input the readers are part of libbeat but they can only be used from filebeat in order to provide a similar experience for more beats the pipeline has to be generalized the first step to generalization is creating a reader pipeline which is able to create the proper readers based on a configuration in this version the order of the readers are not configurable but i don t think that is necessary at this stage golang type pipeline struct config config reader reader reader type config struct file readfile config json readjson config multiline multiline config this is a hack to make docker json parsing part of the pipeline dockerjson struct stream string config stream partial bool config partial format string config format criflags bool config cri flags maxbytes int the source parts of inputs have to be decoupled tcp and udp inputs were created like this the concrete data sources are part of the package inputsource more sources can be extracted from inputs to provide flexibility log reads from a log file journal reads a journal the inputsource s should implement the interface oi reader or reader reader in order to plug into the reader pipeline easily reporting offsets etc todo
| 0
|
33,886
| 9,211,774,600
|
IssuesEvent
|
2019-03-09 18:10:55
|
eclipse/omr
|
https://api.github.com/repos/eclipse/omr
|
closed
|
Build fails with g++ 8.2.1
|
bug build / configure compiler test tril
|
the build fails on archlinux
Linux 4.20.0-arch1-1-ARCH SMP PREEMPT x86_64 GNU/Linux
g++ -v
```
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto
Thread model: posix
gcc version 8.2.1 20181127 (GCC)
```
command used is
```
mkdir native_build && cd native_build
cmake -GNinja -Wdev -C../compile_target.cmake ..
ninja -v
```
compile_target.cmake
```
set(OMR_JITBUILDER ON CACHE BOOL "")
set(OMR_COMPILER ON CACHE BOOL "")
set(OMR_DDR OFF CACHE BOOL "")
```
compilation error output
```
mkdir -p /workspace/openj9/runtime/omr/build/native_build
export SOURCE=/workspace/openj9/runtime/omr &&\
export DEST=/workspace/openj9/runtime/omr/build/native_build &&\
/workspace/openj9/runtime/omr/buildenv-omr/buildOMR.sh -C/workspace/openj9/runtime/omr/buildenv-omr/compile_target.cmake
loading initial cache file /workspace/openj9/runtime/omr/buildenv-omr/compile_target.cmake
-- Starting with CMake version 3.13.2
-- OMR: The CPU architecture is x86
-- OMR: The OS is linux
-- OMR: The tool configuration is gnu
-- OMR: The target data size is 64
-- SRC = /workspace/openj9/runtime/omr
-- Set SPP defines to PROD_WITH_ASSUMES;JITTEST;LINUX;_FILE_OFFSET_BITS=64;J9HAMMER;_AMD64_
-- Set SPP defines to PROD_WITH_ASSUMES;JITTEST;LINUX;_FILE_OFFSET_BITS=64;J9HAMMER;_AMD64_
-- Configuring done
-- Generating done
-- Build files have been written to: /workspace/openj9/runtime/omr/build/native_build
[1/3] cd /workspace/openj9/runtime/omr/build/native_build && /usr/bin/cmake -Domr_SOURCE_DIR=/workspace/openj9/runtime/omr -P /workspace/openj9/runtime/omr/cmake/CheckSourceTree.cmake
-- SRC = /workspace/openj9/runtime/omr/build/native_build
[2/3] /usr/bin/c++ -DBITVECTOR_64BIT -DBITVECTOR_BIT_NUMBERING_MSB -DJ9HAMMER -DJITTEST -DLINUX -DPROD_WITH_ASSUMES -DSUPPORTS_THREAD_LOCAL -DTR_HOST_64BIT -DTR_HOST_X86 -DTR_TARGET_64BIT -DTR_TARGET_X86 -D_AMD64_ -D_FILE_OFFSET_BITS=64 -I../../fvtest/omrGtestGlue/. -I../../third_party/gtest-1.8.0/include -I../../include_core -I. -I../../jitbuilder/x/amd64 -I../../jitbuilder/x -I../../jitbuilder -I../../compiler/x/amd64 -I../../compiler/x -I../../compiler -I../../ -Ifvtest/tril/tril -I../../fvtest/tril/tril -I../../jitbuilder/release/cpp/include -pthread -fno-strict-aliasing -m64 -std=c++0x -fPIE -Wno-write-strings -std=c++11 -MD -MT fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o -MF fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o.d -o fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o -c ../../fvtest/compilertriltest/ArithmeticTest.cpp
FAILED: fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o
/usr/bin/c++ -DBITVECTOR_64BIT -DBITVECTOR_BIT_NUMBERING_MSB -DJ9HAMMER -DJITTEST -DLINUX -DPROD_WITH_ASSUMES -DSUPPORTS_THREAD_LOCAL -DTR_HOST_64BIT -DTR_HOST_X86 -DTR_TARGET_64BIT -DTR_TARGET_X86 -D_AMD64_ -D_FILE_OFFSET_BITS=64 -I../../fvtest/omrGtestGlue/. -I../../third_party/gtest-1.8.0/include -I../../include_core -I. -I../../jitbuilder/x/amd64 -I../../jitbuilder/x -I../../jitbuilder -I../../compiler/x/amd64 -I../../compiler/x -I../../compiler -I../../ -Ifvtest/tril/tril -I../../fvtest/tril/tril -I../../jitbuilder/release/cpp/include -pthread -fno-strict-aliasing -m64 -std=c++0x -fPIE -Wno-write-strings -std=c++11 -MD -MT fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o -MF fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o.d -o fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o -c ../../fvtest/compilertriltest/ArithmeticTest.cpp
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../fvtest/compilertriltest/ArithmeticTest.cpp: In function โtesting::internal::ParamGenerator<std::tuple<std::tuple<float, float>, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)> > > gtest_ArithmeticTestFloatArithmetic_EvalGenerator_()โ:
../../fvtest/compilertriltest/ArithmeticTest.cpp:276:37: error: too many arguments to function โconstexpr std::tuple<typename std::__decay_and_strip<_Elements>::__type ...> std::make_tuple(_Elements&& ...) [with _Elements = {}]โ
std::make_tuple("fadd", fadd),
^
../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:1423:66: note: in definition of macro โINSTANTIATE_TEST_CASE_Pโ
gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
^~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1464:5: note: declared here
make_tuple(_Elements&&... __args)
^~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../fvtest/compilertriltest/ArithmeticTest.cpp:277:37: error: too many arguments to function โconstexpr std::tuple<typename std::__decay_and_strip<_Elements>::__type ...> std::make_tuple(_Elements&& ...) [with _Elements = {}]โ
std::make_tuple("fsub", fsub),
^
../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:1423:66: note: in definition of macro โINSTANTIATE_TEST_CASE_Pโ
gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
^~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1464:5: note: declared here
make_tuple(_Elements&&... __args)
^~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../fvtest/compilertriltest/ArithmeticTest.cpp:278:37: error: too many arguments to function โconstexpr std::tuple<typename std::__decay_and_strip<_Elements>::__type ...> std::make_tuple(_Elements&& ...) [with _Elements = {}]โ
std::make_tuple("fmul", fmul),
^
../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:1423:66: note: in definition of macro โINSTANTIATE_TEST_CASE_Pโ
gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
^~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1464:5: note: declared here
make_tuple(_Elements&&... __args)
^~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../fvtest/compilertriltest/ArithmeticTest.cpp:279:37: error: too many arguments to function โconstexpr std::tuple<typename std::__decay_and_strip<_Elements>::__type ...> std::make_tuple(_Elements&& ...) [with _Elements = {}]โ
std::make_tuple("fdiv", fdiv)
^
../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:1423:66: note: in definition of macro โINSTANTIATE_TEST_CASE_Pโ
gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
^~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1464:5: note: declared here
make_tuple(_Elements&&... __args)
^~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h: In instantiation of โtesting::internal::ValueArray4<T1, T2, T3, T4>::operator testing::internal::ParamGenerator<T>() const [with T = std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>; T1 = std::tuple<>; T2 = std::tuple<>; T3 = std::tuple<>; T4 = std::tuple<>]โ:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:4848:9: required from โtesting::internal::CartesianProductHolder2<Generator1, Generator2>::operator testing::internal::ParamGenerator<std::tuple<_U1, _U2> >() const [with T1 = std::tuple<float, float>; T2 = std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>; Generator1 = testing::internal::ParamGenerator<std::tuple<float, float> >; Generator2 = testing::internal::ValueArray4<std::tuple<>, std::tuple<>, std::tuple<>, std::tuple<> >]โ
../../fvtest/compilertriltest/ArithmeticTest.cpp:272:1: required from here
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: error: no matching function for call to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::tuple(const std::tuple<>&)โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1203:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1203:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1193:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1193:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1183:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1183:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1173:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1173:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1162:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1162:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1152:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1152:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1140:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1140:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1128:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1128:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1119:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_T1, _T2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1119:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1115:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_T1, _T2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, const tuple& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1115:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1109:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1109:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1099:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, _U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:1099:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1089:11: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1089:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1077:2: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1077:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1066:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a)
^~~~~
/usr/include/c++/8.2.1/tuple:1066:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1059:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
explicit constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1059:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1049:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1049:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1040:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
explicit constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1040:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1031:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1031:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1022:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
explicit constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1022:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1013:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1013:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1004:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
explicit constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1004:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 0 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:995:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:995:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 0 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:987:17: note: candidate: โconstexpr std::tuple<_T1, _T2>::tuple(std::tuple<_T1, _T2>&&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(tuple&&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:987:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&&โ
/usr/include/c++/8.2.1/tuple:985:17: note: candidate: โstd::tuple<_T1, _T2>::tuple(const std::tuple<_T1, _T2>&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(const tuple&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:985:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โconst std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&โ
/usr/include/c++/8.2.1/tuple:982:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
explicit constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:982:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:971:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:971:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:956:28: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
explicit constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:956:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:947:19: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:947:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:933:26: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::is_default_constructible<_Tp>, std::is_default_constructible<_Dp>, std::__not_<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> > > >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
explicit constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:933:26: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 0 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:919:17: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:919:17: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 0 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: error: no matching function for call to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::tuple(const std::tuple<>&)โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1203:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1203:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1193:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1193:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1183:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1183:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1173:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1173:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1162:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1162:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1152:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1152:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1140:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1140:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1128:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1128:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1119:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_T1, _T2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1119:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1115:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_T1, _T2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, const tuple& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1115:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1109:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1109:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1099:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, _U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:1099:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1089:11: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1089:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1077:2: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1077:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1066:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a)
^~~~~
/usr/include/c++/8.2.1/tuple:1066:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1059:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
explicit constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1059:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1049:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1049:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1040:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
explicit constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1040:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1031:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1031:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1022:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
explicit constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1022:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1013:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1013:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1004:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
explicit constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1004:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 0 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:995:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:995:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 0 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:987:17: note: candidate: โconstexpr std::tuple<_T1, _T2>::tuple(std::tuple<_T1, _T2>&&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(tuple&&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:987:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&&โ
/usr/include/c++/8.2.1/tuple:985:17: note: candidate: โstd::tuple<_T1, _T2>::tuple(const std::tuple<_T1, _T2>&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(const tuple&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:985:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โconst std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&โ
/usr/include/c++/8.2.1/tuple:982:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
explicit constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:982:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:971:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:971:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:956:28: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
explicit constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:956:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:947:19: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:947:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:933:26: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::is_default_constructible<_Tp>, std::is_default_constructible<_Dp>, std::__not_<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> > > >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
explicit constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:933:26: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 0 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:919:17: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:919:17: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 0 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: error: no matching function for call to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::tuple(const std::tuple<>&)โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1203:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1203:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1193:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1193:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1183:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1183:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1173:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1173:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1162:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1162:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1152:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1152:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1140:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1140:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1128:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1128:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1119:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_T1, _T2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1119:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1115:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_T1, _T2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, const tuple& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1115:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1109:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1109:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1099:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, _U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:1099:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1089:11: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1089:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1077:2: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1077:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1066:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a)
^~~~~
/usr/include/c++/8.2.1/tuple:1066:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1059:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
explicit constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1059:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1049:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1049:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1040:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
explicit constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1040:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1031:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1031:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1022:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
explicit constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1022:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1013:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1013:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1004:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
explicit constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1004:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 0 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:995:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:995:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 0 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:987:17: note: candidate: โconstexpr std::tuple<_T1, _T2>::tuple(std::tuple<_T1, _T2>&&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(tuple&&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:987:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&&โ
/usr/include/c++/8.2.1/tuple:985:17: note: candidate: โstd::tuple<_T1, _T2>::tuple(const std::tuple<_T1, _T2>&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(const tuple&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:985:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โconst std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&โ
/usr/include/c++/8.2.1/tuple:982:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
explicit constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:982:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:971:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:971:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:956:28: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
explicit constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:956:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:947:19: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:947:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:933:26: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::is_default_constructible<_Tp>, std::is_default_constructible<_Dp>, std::__not_<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> > > >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
explicit constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:933:26: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 0 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:919:17: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:919:17: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 0 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: error: no matching function for call to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::tuple(const std::tuple<>&)โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1203:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1203:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1193:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1193:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1183:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1183:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1173:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1173:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1162:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1162:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1152:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1152:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1140:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1140:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1128:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1128:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1119:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_T1, _T2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1119:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1115:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_T1, _T2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, const tuple& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1115:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1109:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1109:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1099:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, _U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:1099:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1089:11: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1089:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1077:2: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1077:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1066:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a)
^~~~~
/usr/include/c++/8.2.1/tuple:1066:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1059:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
explicit constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1059:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1049:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1049:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1040:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
explicit constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1040:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1031:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1031:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1022:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
explicit constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1022:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1013:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1013:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1004:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
explicit constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1004:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 0 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:995:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:995:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 0 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:987:17: note: candidate: โconstexpr std::tuple<_T1, _T2>::tuple(std::tuple<_T1, _T2>&&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(tuple&&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:987:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&&โ
/usr/include/c++/8.2.1/tuple:985:17: note: candidate: โstd::tuple<_T1, _T2>::tuple(const std::tuple<_T1, _T2>&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(const tuple&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:985:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โconst std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&โ
/usr/include/c++/8.2.1/tuple:982:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
explicit constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:982:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:971:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:971:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:956:28: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
explicit constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:956:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:947:19: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:947:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:933:26: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::is_default_constructible<_Tp>, std::is_default_constructible<_Dp>, std::__not_<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> > > >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
explicit constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:933:26: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 0 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:919:17: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:919:17: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 0 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
ninja: build stopped: subcommand failed.
```
|
1.0
|
Build fails with g++ 8.2.1 - the build fails on archlinux
Linux 4.20.0-arch1-1-ARCH SMP PREEMPT x86_64 GNU/Linux
g++ -v
```
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/ --enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++ --enable-shared --enable-threads=posix --enable-libmpx --with-system-zlib --with-isl --enable-__cxa_atexit --disable-libunwind-exceptions --enable-clocale=gnu --disable-libstdcxx-pch --disable-libssp --enable-gnu-unique-object --enable-linker-build-id --enable-lto --enable-plugin --enable-install-libiberty --with-linker-hash-style=gnu --enable-gnu-indirect-function --enable-multilib --disable-werror --enable-checking=release --enable-default-pie --enable-default-ssp --enable-cet=auto
Thread model: posix
gcc version 8.2.1 20181127 (GCC)
```
command used is
```
mkdir native_build && cd native_build
cmake -GNinja -Wdev -C../compile_target.cmake ..
ninja -v
```
compile_target.cmake
```
set(OMR_JITBUILDER ON CACHE BOOL "")
set(OMR_COMPILER ON CACHE BOOL "")
set(OMR_DDR OFF CACHE BOOL "")
```
compilation error output
```
mkdir -p /workspace/openj9/runtime/omr/build/native_build
export SOURCE=/workspace/openj9/runtime/omr &&\
export DEST=/workspace/openj9/runtime/omr/build/native_build &&\
/workspace/openj9/runtime/omr/buildenv-omr/buildOMR.sh -C/workspace/openj9/runtime/omr/buildenv-omr/compile_target.cmake
loading initial cache file /workspace/openj9/runtime/omr/buildenv-omr/compile_target.cmake
-- Starting with CMake version 3.13.2
-- OMR: The CPU architecture is x86
-- OMR: The OS is linux
-- OMR: The tool configuration is gnu
-- OMR: The target data size is 64
-- SRC = /workspace/openj9/runtime/omr
-- Set SPP defines to PROD_WITH_ASSUMES;JITTEST;LINUX;_FILE_OFFSET_BITS=64;J9HAMMER;_AMD64_
-- Set SPP defines to PROD_WITH_ASSUMES;JITTEST;LINUX;_FILE_OFFSET_BITS=64;J9HAMMER;_AMD64_
-- Configuring done
-- Generating done
-- Build files have been written to: /workspace/openj9/runtime/omr/build/native_build
[1/3] cd /workspace/openj9/runtime/omr/build/native_build && /usr/bin/cmake -Domr_SOURCE_DIR=/workspace/openj9/runtime/omr -P /workspace/openj9/runtime/omr/cmake/CheckSourceTree.cmake
-- SRC = /workspace/openj9/runtime/omr/build/native_build
[2/3] /usr/bin/c++ -DBITVECTOR_64BIT -DBITVECTOR_BIT_NUMBERING_MSB -DJ9HAMMER -DJITTEST -DLINUX -DPROD_WITH_ASSUMES -DSUPPORTS_THREAD_LOCAL -DTR_HOST_64BIT -DTR_HOST_X86 -DTR_TARGET_64BIT -DTR_TARGET_X86 -D_AMD64_ -D_FILE_OFFSET_BITS=64 -I../../fvtest/omrGtestGlue/. -I../../third_party/gtest-1.8.0/include -I../../include_core -I. -I../../jitbuilder/x/amd64 -I../../jitbuilder/x -I../../jitbuilder -I../../compiler/x/amd64 -I../../compiler/x -I../../compiler -I../../ -Ifvtest/tril/tril -I../../fvtest/tril/tril -I../../jitbuilder/release/cpp/include -pthread -fno-strict-aliasing -m64 -std=c++0x -fPIE -Wno-write-strings -std=c++11 -MD -MT fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o -MF fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o.d -o fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o -c ../../fvtest/compilertriltest/ArithmeticTest.cpp
FAILED: fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o
/usr/bin/c++ -DBITVECTOR_64BIT -DBITVECTOR_BIT_NUMBERING_MSB -DJ9HAMMER -DJITTEST -DLINUX -DPROD_WITH_ASSUMES -DSUPPORTS_THREAD_LOCAL -DTR_HOST_64BIT -DTR_HOST_X86 -DTR_TARGET_64BIT -DTR_TARGET_X86 -D_AMD64_ -D_FILE_OFFSET_BITS=64 -I../../fvtest/omrGtestGlue/. -I../../third_party/gtest-1.8.0/include -I../../include_core -I. -I../../jitbuilder/x/amd64 -I../../jitbuilder/x -I../../jitbuilder -I../../compiler/x/amd64 -I../../compiler/x -I../../compiler -I../../ -Ifvtest/tril/tril -I../../fvtest/tril/tril -I../../jitbuilder/release/cpp/include -pthread -fno-strict-aliasing -m64 -std=c++0x -fPIE -Wno-write-strings -std=c++11 -MD -MT fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o -MF fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o.d -o fvtest/compilertriltest/CMakeFiles/comptest.dir/ArithmeticTest.cpp.o -c ../../fvtest/compilertriltest/ArithmeticTest.cpp
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../fvtest/compilertriltest/ArithmeticTest.cpp: In function โtesting::internal::ParamGenerator<std::tuple<std::tuple<float, float>, std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)> > > gtest_ArithmeticTestFloatArithmetic_EvalGenerator_()โ:
../../fvtest/compilertriltest/ArithmeticTest.cpp:276:37: error: too many arguments to function โconstexpr std::tuple<typename std::__decay_and_strip<_Elements>::__type ...> std::make_tuple(_Elements&& ...) [with _Elements = {}]โ
std::make_tuple("fadd", fadd),
^
../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:1423:66: note: in definition of macro โINSTANTIATE_TEST_CASE_Pโ
gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
^~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1464:5: note: declared here
make_tuple(_Elements&&... __args)
^~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../fvtest/compilertriltest/ArithmeticTest.cpp:277:37: error: too many arguments to function โconstexpr std::tuple<typename std::__decay_and_strip<_Elements>::__type ...> std::make_tuple(_Elements&& ...) [with _Elements = {}]โ
std::make_tuple("fsub", fsub),
^
../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:1423:66: note: in definition of macro โINSTANTIATE_TEST_CASE_Pโ
gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
^~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1464:5: note: declared here
make_tuple(_Elements&&... __args)
^~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../fvtest/compilertriltest/ArithmeticTest.cpp:278:37: error: too many arguments to function โconstexpr std::tuple<typename std::__decay_and_strip<_Elements>::__type ...> std::make_tuple(_Elements&& ...) [with _Elements = {}]โ
std::make_tuple("fmul", fmul),
^
../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:1423:66: note: in definition of macro โINSTANTIATE_TEST_CASE_Pโ
gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
^~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1464:5: note: declared here
make_tuple(_Elements&&... __args)
^~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../fvtest/compilertriltest/ArithmeticTest.cpp:279:37: error: too many arguments to function โconstexpr std::tuple<typename std::__decay_and_strip<_Elements>::__type ...> std::make_tuple(_Elements&& ...) [with _Elements = {}]โ
std::make_tuple("fdiv", fdiv)
^
../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:1423:66: note: in definition of macro โINSTANTIATE_TEST_CASE_Pโ
gtest_##prefix##test_case_name##_EvalGenerator_() { return generator; } \
^~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1464:5: note: declared here
make_tuple(_Elements&&... __args)
^~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h: In instantiation of โtesting::internal::ValueArray4<T1, T2, T3, T4>::operator testing::internal::ParamGenerator<T>() const [with T = std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>; T1 = std::tuple<>; T2 = std::tuple<>; T3 = std::tuple<>; T4 = std::tuple<>]โ:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:4848:9: required from โtesting::internal::CartesianProductHolder2<Generator1, Generator2>::operator testing::internal::ParamGenerator<std::tuple<_U1, _U2> >() const [with T1 = std::tuple<float, float>; T2 = std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>; Generator1 = testing::internal::ParamGenerator<std::tuple<float, float> >; Generator2 = testing::internal::ValueArray4<std::tuple<>, std::tuple<>, std::tuple<>, std::tuple<> >]โ
../../fvtest/compilertriltest/ArithmeticTest.cpp:272:1: required from here
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: error: no matching function for call to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::tuple(const std::tuple<>&)โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1203:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1203:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1193:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1193:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1183:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1183:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1173:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1173:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1162:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1162:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1152:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1152:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1140:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1140:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1128:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1128:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1119:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_T1, _T2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1119:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1115:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_T1, _T2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, const tuple& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1115:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1109:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1109:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1099:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, _U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:1099:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1089:11: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1089:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1077:2: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1077:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1066:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a)
^~~~~
/usr/include/c++/8.2.1/tuple:1066:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1059:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
explicit constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1059:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1049:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1049:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1040:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
explicit constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1040:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1031:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1031:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1022:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
explicit constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1022:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1013:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1013:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1004:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
explicit constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1004:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 0 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:995:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:995:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 0 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:987:17: note: candidate: โconstexpr std::tuple<_T1, _T2>::tuple(std::tuple<_T1, _T2>&&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(tuple&&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:987:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&&โ
/usr/include/c++/8.2.1/tuple:985:17: note: candidate: โstd::tuple<_T1, _T2>::tuple(const std::tuple<_T1, _T2>&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(const tuple&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:985:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โconst std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&โ
/usr/include/c++/8.2.1/tuple:982:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
explicit constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:982:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:971:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:971:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:956:28: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
explicit constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:956:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:947:19: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:947:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:933:26: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::is_default_constructible<_Tp>, std::is_default_constructible<_Dp>, std::__not_<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> > > >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
explicit constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:933:26: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 0 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:919:17: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:919:17: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:24: note: candidate expects 0 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: error: no matching function for call to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::tuple(const std::tuple<>&)โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1203:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1203:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1193:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1193:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1183:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1183:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1173:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1173:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1162:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1162:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1152:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1152:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1140:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1140:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1128:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1128:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1119:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_T1, _T2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1119:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1115:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_T1, _T2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, const tuple& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1115:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 3 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1109:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1109:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1099:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, _U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:1099:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1089:11: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1089:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1077:2: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1077:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 4 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1066:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a)
^~~~~
/usr/include/c++/8.2.1/tuple:1066:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1059:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
explicit constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1059:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1049:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1049:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1040:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
explicit constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1040:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1031:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1031:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1022:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
explicit constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1022:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1013:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1013:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1004:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
explicit constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1004:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 0 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:995:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:995:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 0 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:987:17: note: candidate: โconstexpr std::tuple<_T1, _T2>::tuple(std::tuple<_T1, _T2>&&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(tuple&&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:987:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&&โ
/usr/include/c++/8.2.1/tuple:985:17: note: candidate: โstd::tuple<_T1, _T2>::tuple(const std::tuple<_T1, _T2>&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(const tuple&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:985:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โconst std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&โ
/usr/include/c++/8.2.1/tuple:982:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
explicit constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:982:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:971:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:971:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:956:28: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
explicit constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:956:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:947:19: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:947:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 2 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:933:26: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::is_default_constructible<_Tp>, std::is_default_constructible<_Dp>, std::__not_<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> > > >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
explicit constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:933:26: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 0 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:919:17: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:919:17: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:142:45: note: candidate expects 0 arguments, 1 provided
const T array[] = {static_cast<T>(v1_), static_cast<T>(v2_),
^~~~~~~~~~~~~~~~~~~
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: error: no matching function for call to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::tuple(const std::tuple<>&)โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1203:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1203:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1193:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1193:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1183:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1183:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1173:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1173:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1162:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1162:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1152:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1152:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1140:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1140:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1128:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1128:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1119:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_T1, _T2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1119:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1115:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_T1, _T2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, const tuple& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1115:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1109:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1109:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1099:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, _U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:1099:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1089:11: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1089:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1077:2: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1077:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1066:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a)
^~~~~
/usr/include/c++/8.2.1/tuple:1066:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1059:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
explicit constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1059:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1049:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1049:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1040:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
explicit constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1040:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1031:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1031:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1022:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
explicit constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1022:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1013:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1013:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1004:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
explicit constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1004:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 0 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:995:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:995:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 0 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:987:17: note: candidate: โconstexpr std::tuple<_T1, _T2>::tuple(std::tuple<_T1, _T2>&&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(tuple&&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:987:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&&โ
/usr/include/c++/8.2.1/tuple:985:17: note: candidate: โstd::tuple<_T1, _T2>::tuple(const std::tuple<_T1, _T2>&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(const tuple&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:985:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โconst std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&โ
/usr/include/c++/8.2.1/tuple:982:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
explicit constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:982:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:971:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:971:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:956:28: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
explicit constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:956:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:947:19: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:947:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:933:26: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::is_default_constructible<_Tp>, std::is_default_constructible<_Dp>, std::__not_<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> > > >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
explicit constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:933:26: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 0 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:919:17: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:919:17: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:9: note: candidate expects 0 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: error: no matching function for call to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::tuple(const std::tuple<>&)โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1203:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1203:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1193:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::pair<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1193:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1183:18: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1183:18: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1173:9: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::pair<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1173:9: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1162:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1162:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1152:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_U1, _U2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1152:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1140:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1140:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1128:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_U1, _U2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1128:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1119:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, std::tuple<_T1, _T2>&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, tuple&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1119:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1115:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const std::tuple<_T1, _T2>&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, const tuple& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1115:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 3 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1109:11: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1109:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1099:2: note: candidate: โtemplate<class _Alloc, class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, _U1&&, _U2&&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a, _U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:1099:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1089:11: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
explicit tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1089:11: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1077:2: note: candidate: โtemplate<class _Alloc, class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&, const _T1&, const _T2&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a,
^~~~~
/usr/include/c++/8.2.1/tuple:1077:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 4 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1066:2: note: candidate: โtemplate<class _Alloc> std::tuple<_T1, _T2>::tuple(std::allocator_arg_t, const _Alloc&)โ
tuple(allocator_arg_t __tag, const _Alloc& __a)
^~~~~
/usr/include/c++/8.2.1/tuple:1066:2: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1059:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
explicit constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1059:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1049:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::pair<_U1, _U2>&&)โ
constexpr tuple(pair<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1049:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: types โstd::pair<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1040:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
explicit constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1040:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1031:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::pair<_U1, _U2>&)โ
constexpr tuple(const pair<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1031:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: โconst std::tuple<>โ is not derived from โconst std::pair<_T1, _T2>โ
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1022:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
explicit constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1022:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1013:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(std::tuple<_U1, _U2>&&)โ
constexpr tuple(tuple<_U1, _U2>&& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1013:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: types โstd::tuple<_T1, _T2>โ and โconst std::tuple<>โ have incompatible cv-qualifiers
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:1004:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && (! _ImplicitlyConvertibleTuple<_U1, _U2>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
explicit constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:1004:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 0 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:995:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<(_ConstructibleTuple<_U1, _U2>() && _ImplicitlyConvertibleTuple<_U1, _U2>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const std::tuple<_U1, _U2>&)โ
constexpr tuple(const tuple<_U1, _U2>& __in)
^~~~~
/usr/include/c++/8.2.1/tuple:995:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 0 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:987:17: note: candidate: โconstexpr std::tuple<_T1, _T2>::tuple(std::tuple<_T1, _T2>&&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(tuple&&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:987:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โstd::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&&โ
/usr/include/c++/8.2.1/tuple:985:17: note: candidate: โstd::tuple<_T1, _T2>::tuple(const std::tuple<_T1, _T2>&) [with _T1 = std::__cxx11::basic_string<char>; _T2 = float (*)(float, float)]โ
constexpr tuple(const tuple&) = default;
^~~~~
/usr/include/c++/8.2.1/tuple:985:17: note: no known conversion for argument 1 from โconst std::tuple<>โ to โconst std::tuple<std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>&โ
/usr/include/c++/8.2.1/tuple:982:28: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && (! _ImplicitlyMoveConvertibleTuple<_U1, _U2>())) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
explicit constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:982:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:971:19: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<((_MoveConstructibleTuple<_U1, _U2>() && _ImplicitlyMoveConvertibleTuple<_U1, _U2>()) && (! std::is_same<typename std::decay<_Tp>::type, std::allocator_arg_t>::value)), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(_U1&&, _U2&&)โ
constexpr tuple(_U1&& __a1, _U2&& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:971:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:956:28: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && (! std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>())), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
explicit constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:956:28: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:947:19: note: candidate: โtemplate<class _Dummy, typename std::enable_if<(std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ConstructibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>() && std::_TC<std::is_same<_Dummy, void>::value, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>::_ImplicitlyConvertibleTuple<basic_string<char, std::char_traits<char>, std::allocator<char> >, float (*)(float, float)>()), bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple(const _T1&, const _T2&)โ
constexpr tuple(const _T1& __a1, const _T2& __a2)
^~~~~
/usr/include/c++/8.2.1/tuple:947:19: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 2 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:933:26: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::is_default_constructible<_Tp>, std::is_default_constructible<_Dp>, std::__not_<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> > > >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
explicit constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:933:26: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 0 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
In file included from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-port.h:677,
from ../../third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h:40,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:58,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
/usr/include/c++/8.2.1/tuple:919:17: note: candidate: โtemplate<class _U1, class _U2, typename std::enable_if<std::__and_<std::__is_implicitly_default_constructible<_U1>, std::__is_implicitly_default_constructible<_U2> >::value, bool>::type <anonymous> > constexpr std::tuple<_T1, _T2>::tuple()โ
constexpr tuple()
^~~~~
/usr/include/c++/8.2.1/tuple:919:17: note: template argument deduction/substitution failed:
In file included from ../../third_party/gtest-1.8.0/include/gtest/gtest-param-test.h:193,
from ../../third_party/gtest-1.8.0/include/gtest/gtest.h:62,
from ../../fvtest/compilertriltest/JitTest.hpp:25,
from ../../fvtest/compilertriltest/OpCodeTest.hpp:25,
from ../../fvtest/compilertriltest/ArithmeticTest.cpp:22:
../../third_party/gtest-1.8.0/include/gtest/internal/gtest-param-util-generated.h:143:30: note: candidate expects 0 arguments, 1 provided
static_cast<T>(v3_), static_cast<T>(v4_)};
^~~~~~~~~~~~~~~~~~~
ninja: build stopped: subcommand failed.
```
|
non_process
|
build fails with g the build fails on archlinux linux arch smp preempt gnu linux g v using built in specs collect gcc gcc collect lto wrapper usr lib gcc pc linux gnu lto wrapper target pc linux gnu configured with build gcc src gcc configure prefix usr libdir usr lib libexecdir usr lib mandir usr share man infodir usr share info with bugurl enable languages c c ada fortran go lto objc obj c enable shared enable threads posix enable libmpx with system zlib with isl enable cxa atexit disable libunwind exceptions enable clocale gnu disable libstdcxx pch disable libssp enable gnu unique object enable linker build id enable lto enable plugin enable install libiberty with linker hash style gnu enable gnu indirect function enable multilib disable werror enable checking release enable default pie enable default ssp enable cet auto thread model posix gcc version gcc command used is mkdir native build cd native build cmake gninja wdev c compile target cmake ninja v compile target cmake set omr jitbuilder on cache bool set omr compiler on cache bool set omr ddr off cache bool compilation error output mkdir p workspace runtime omr build native build export source workspace runtime omr export dest workspace runtime omr build native build workspace runtime omr buildenv omr buildomr sh c workspace runtime omr buildenv omr compile target cmake loading initial cache file workspace runtime omr buildenv omr compile target cmake starting with cmake version omr the cpu architecture is omr the os is linux omr the tool configuration is gnu omr the target data size is src workspace runtime omr set spp defines to prod with assumes jittest linux file offset bits set spp defines to prod with assumes jittest linux file offset bits configuring done generating done build files have been written to workspace runtime omr build native build cd workspace runtime omr build native build usr bin cmake domr source dir workspace runtime omr p workspace runtime omr cmake checksourcetree cmake src workspace runtime omr build native build usr bin c dbitvector dbitvector bit numbering msb djittest dlinux dprod with assumes dsupports thread local dtr host dtr host dtr target dtr target d d file offset bits i fvtest omrgtestglue i third party gtest include i include core i i jitbuilder x i jitbuilder x i jitbuilder i compiler x i compiler x i compiler i ifvtest tril tril i fvtest tril tril i jitbuilder release cpp include pthread fno strict aliasing std c fpie wno write strings std c md mt fvtest compilertriltest cmakefiles comptest dir arithmetictest cpp o mf fvtest compilertriltest cmakefiles comptest dir arithmetictest cpp o d o fvtest compilertriltest cmakefiles comptest dir arithmetictest cpp o c fvtest compilertriltest arithmetictest cpp failed fvtest compilertriltest cmakefiles comptest dir arithmetictest cpp o usr bin c dbitvector dbitvector bit numbering msb djittest dlinux dprod with assumes dsupports thread local dtr host dtr host dtr target dtr target d d file offset bits i fvtest omrgtestglue i third party gtest include i include core i i jitbuilder x i jitbuilder x i jitbuilder i compiler x i compiler x i compiler i ifvtest tril tril i fvtest tril tril i jitbuilder release cpp include pthread fno strict aliasing std c fpie wno write strings std c md mt fvtest compilertriltest cmakefiles comptest dir arithmetictest cpp o mf fvtest compilertriltest cmakefiles comptest dir arithmetictest cpp o d o fvtest compilertriltest cmakefiles comptest dir arithmetictest cpp o c fvtest compilertriltest arithmetictest cpp in file included from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp fvtest compilertriltest arithmetictest cpp in function โtesting internal paramgenerator std tuple std allocator float float float gtest arithmetictestfloatarithmetic evalgenerator โ fvtest compilertriltest arithmetictest cpp error too many arguments to function โconstexpr std tuple type std make tuple elements โ std make tuple fadd fadd third party gtest include gtest gtest param test h note in definition of macro โinstantiate test case pโ gtest prefix test case name evalgenerator return generator in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note declared here make tuple elements args in file included from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp fvtest compilertriltest arithmetictest cpp error too many arguments to function โconstexpr std tuple type std make tuple elements โ std make tuple fsub fsub third party gtest include gtest gtest param test h note in definition of macro โinstantiate test case pโ gtest prefix test case name evalgenerator return generator in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note declared here make tuple elements args in file included from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp fvtest compilertriltest arithmetictest cpp error too many arguments to function โconstexpr std tuple type std make tuple elements โ std make tuple fmul fmul third party gtest include gtest gtest param test h note in definition of macro โinstantiate test case pโ gtest prefix test case name evalgenerator return generator in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note declared here make tuple elements args in file included from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp fvtest compilertriltest arithmetictest cpp error too many arguments to function โconstexpr std tuple type std make tuple elements โ std make tuple fdiv fdiv third party gtest include gtest gtest param test h note in definition of macro โinstantiate test case pโ gtest prefix test case name evalgenerator return generator in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note declared here make tuple elements args in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h in instantiation of โtesting internal operator testing internal paramgenerator const โ third party gtest include gtest internal gtest param util generated h required from โtesting internal operator testing internal paramgenerator const โ fvtest compilertriltest arithmetictest cpp required from here third party gtest include gtest internal gtest param util generated h error no matching function for call to โstd tuple std allocator float float float tuple const std tuple โ const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std pair โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std pair โ tuple allocator arg t tag const alloc a pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std pair โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std pair โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std tuple โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std tuple โ tuple allocator arg t tag const alloc a tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std tuple โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std tuple โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc std tuple โ tuple allocator arg t tag const alloc a tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc const std tuple โ tuple allocator arg t tag const alloc a const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type std tuple tuple std allocator arg t const alloc const const โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type std tuple tuple std allocator arg t const alloc const const โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std pair โ explicit constexpr tuple pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd pair โ and โconst std tuple โ have incompatible cv qualifiers const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std pair โ constexpr tuple pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd pair โ and โconst std tuple โ have incompatible cv qualifiers const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std pair โ explicit constexpr tuple const pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note โconst std tuple โ is not derived from โconst std pair โ const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std pair โ constexpr tuple const pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note โconst std tuple โ is not derived from โconst std pair โ const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std tuple โ explicit constexpr tuple tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd tuple โ and โconst std tuple โ have incompatible cv qualifiers const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std tuple โ constexpr tuple tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd tuple โ and โconst std tuple โ have incompatible cv qualifiers const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std tuple โ explicit constexpr tuple const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std tuple โ constexpr tuple const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โconstexpr std tuple tuple std tuple โ constexpr tuple tuple default usr include c tuple note no known conversion for argument from โconst std tuple โ to โstd tuple std allocator float float float โ usr include c tuple note candidate โstd tuple tuple const std tuple โ constexpr tuple const tuple default usr include c tuple note no known conversion for argument from โconst std tuple โ to โconst std tuple std allocator float float float โ usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple std is same type std allocator arg t value bool type constexpr std tuple tuple โ explicit constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple std is same type std allocator arg t value bool type constexpr std tuple tuple โ constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type constexpr std tuple tuple const const โ explicit constexpr tuple const const usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type constexpr std tuple tuple const const โ constexpr tuple const const usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std is default constructible std not std is implicitly default constructible value bool type constexpr std tuple tuple โ explicit constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std is implicitly default constructible value bool type constexpr std tuple tuple โ constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast third party gtest include gtest internal gtest param util generated h error no matching function for call to โstd tuple std allocator float float float tuple const std tuple โ const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std pair โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std pair โ tuple allocator arg t tag const alloc a pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std pair โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std pair โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std tuple โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std tuple โ tuple allocator arg t tag const alloc a tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std tuple โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std tuple โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc std tuple โ tuple allocator arg t tag const alloc a tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc const std tuple โ tuple allocator arg t tag const alloc a const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type std tuple tuple std allocator arg t const alloc const const โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type std tuple tuple std allocator arg t const alloc const const โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std pair โ explicit constexpr tuple pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd pair โ and โconst std tuple โ have incompatible cv qualifiers const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std pair โ constexpr tuple pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd pair โ and โconst std tuple โ have incompatible cv qualifiers const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std pair โ explicit constexpr tuple const pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note โconst std tuple โ is not derived from โconst std pair โ const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std pair โ constexpr tuple const pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note โconst std tuple โ is not derived from โconst std pair โ const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std tuple โ explicit constexpr tuple tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd tuple โ and โconst std tuple โ have incompatible cv qualifiers const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std tuple โ constexpr tuple tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd tuple โ and โconst std tuple โ have incompatible cv qualifiers const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std tuple โ explicit constexpr tuple const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std tuple โ constexpr tuple const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โconstexpr std tuple tuple std tuple โ constexpr tuple tuple default usr include c tuple note no known conversion for argument from โconst std tuple โ to โstd tuple std allocator float float float โ usr include c tuple note candidate โstd tuple tuple const std tuple โ constexpr tuple const tuple default usr include c tuple note no known conversion for argument from โconst std tuple โ to โconst std tuple std allocator float float float โ usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple std is same type std allocator arg t value bool type constexpr std tuple tuple โ explicit constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple std is same type std allocator arg t value bool type constexpr std tuple tuple โ constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type constexpr std tuple tuple const const โ explicit constexpr tuple const const usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type constexpr std tuple tuple const const โ constexpr tuple const const usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std is default constructible std not std is implicitly default constructible value bool type constexpr std tuple tuple โ explicit constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std is implicitly default constructible value bool type constexpr std tuple tuple โ constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided const t array static cast static cast third party gtest include gtest internal gtest param util generated h error no matching function for call to โstd tuple std allocator float float float tuple const std tuple โ static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std pair โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std pair โ tuple allocator arg t tag const alloc a pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std pair โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std pair โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std tuple โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std tuple โ tuple allocator arg t tag const alloc a tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std tuple โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std tuple โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc std tuple โ tuple allocator arg t tag const alloc a tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc const std tuple โ tuple allocator arg t tag const alloc a const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type std tuple tuple std allocator arg t const alloc const const โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type std tuple tuple std allocator arg t const alloc const const โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std pair โ explicit constexpr tuple pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd pair โ and โconst std tuple โ have incompatible cv qualifiers static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std pair โ constexpr tuple pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd pair โ and โconst std tuple โ have incompatible cv qualifiers static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std pair โ explicit constexpr tuple const pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note โconst std tuple โ is not derived from โconst std pair โ static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std pair โ constexpr tuple const pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note โconst std tuple โ is not derived from โconst std pair โ static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std tuple โ explicit constexpr tuple tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd tuple โ and โconst std tuple โ have incompatible cv qualifiers static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std tuple โ constexpr tuple tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd tuple โ and โconst std tuple โ have incompatible cv qualifiers static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std tuple โ explicit constexpr tuple const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std tuple โ constexpr tuple const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โconstexpr std tuple tuple std tuple โ constexpr tuple tuple default usr include c tuple note no known conversion for argument from โconst std tuple โ to โstd tuple std allocator float float float โ usr include c tuple note candidate โstd tuple tuple const std tuple โ constexpr tuple const tuple default usr include c tuple note no known conversion for argument from โconst std tuple โ to โconst std tuple std allocator float float float โ usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple std is same type std allocator arg t value bool type constexpr std tuple tuple โ explicit constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple std is same type std allocator arg t value bool type constexpr std tuple tuple โ constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type constexpr std tuple tuple const const โ explicit constexpr tuple const const usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type constexpr std tuple tuple const const โ constexpr tuple const const usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std is default constructible std not std is implicitly default constructible value bool type constexpr std tuple tuple โ explicit constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std is implicitly default constructible value bool type constexpr std tuple tuple โ constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast third party gtest include gtest internal gtest param util generated h error no matching function for call to โstd tuple std allocator float float float tuple const std tuple โ static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std pair โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std pair โ tuple allocator arg t tag const alloc a pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std pair โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std pair โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std tuple โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc std tuple โ tuple allocator arg t tag const alloc a tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std tuple โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type std tuple tuple std allocator arg t const alloc const std tuple โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc std tuple โ tuple allocator arg t tag const alloc a tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc const std tuple โ tuple allocator arg t tag const alloc a const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type std tuple tuple std allocator arg t const alloc โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type std tuple tuple std allocator arg t const alloc const const โ explicit tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type std tuple tuple std allocator arg t const alloc const const โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std tuple tuple std allocator arg t const alloc โ tuple allocator arg t tag const alloc a usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std pair โ explicit constexpr tuple pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd pair โ and โconst std tuple โ have incompatible cv qualifiers static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std pair โ constexpr tuple pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd pair โ and โconst std tuple โ have incompatible cv qualifiers static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std pair โ explicit constexpr tuple const pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note โconst std tuple โ is not derived from โconst std pair โ static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std pair โ constexpr tuple const pair in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note โconst std tuple โ is not derived from โconst std pair โ static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std tuple โ explicit constexpr tuple tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd tuple โ and โconst std tuple โ have incompatible cv qualifiers static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple bool type constexpr std tuple tuple std tuple โ constexpr tuple tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note types โstd tuple โ and โconst std tuple โ have incompatible cv qualifiers static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std tuple โ explicit constexpr tuple const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlyconvertibletuple bool type constexpr std tuple tuple const std tuple โ constexpr tuple const tuple in usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โconstexpr std tuple tuple std tuple โ constexpr tuple tuple default usr include c tuple note no known conversion for argument from โconst std tuple โ to โstd tuple std allocator float float float โ usr include c tuple note candidate โstd tuple tuple const std tuple โ constexpr tuple const tuple default usr include c tuple note no known conversion for argument from โconst std tuple โ to โconst std tuple std allocator float float float โ usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple std is same type std allocator arg t value bool type constexpr std tuple tuple โ explicit constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate implicitlymoveconvertibletuple std is same type std allocator arg t value bool type constexpr std tuple tuple โ constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type constexpr std tuple tuple const const โ explicit constexpr tuple const const usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate value std basic string std allocator float float float constructibletuple std allocator float float float std tc value std basic string std allocator float float float implicitlyconvertibletuple std allocator float float float bool type constexpr std tuple tuple const const โ constexpr tuple const const usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std is default constructible std not std is implicitly default constructible value bool type constexpr std tuple tuple โ explicit constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast in file included from third party gtest include gtest internal gtest port h from third party gtest include gtest internal gtest internal h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp usr include c tuple note candidate โtemplate std is implicitly default constructible value bool type constexpr std tuple tuple โ constexpr tuple usr include c tuple note template argument deduction substitution failed in file included from third party gtest include gtest gtest param test h from third party gtest include gtest gtest h from fvtest compilertriltest jittest hpp from fvtest compilertriltest opcodetest hpp from fvtest compilertriltest arithmetictest cpp third party gtest include gtest internal gtest param util generated h note candidate expects arguments provided static cast static cast ninja build stopped subcommand failed
| 0
|
14,572
| 17,694,163,459
|
IssuesEvent
|
2021-08-24 13:37:52
|
allinurl/goaccess
|
https://api.github.com/repos/allinurl/goaccess
|
closed
|
Problem with Goaccess and uncorrect number of visitors
|
question log-processing
|
Hi, I am new to goaccess and I have found a problem with my nginx log files. Goaccess extracts all the data correctly but sometimes, like in Not Found URLs (404s) table, it ends up having a 0 in visitors field whereas the number of hits is different from 0 for a given URL. On the other hand if I extract that given url directly from the file without using Goaccess (using grep...) I have the same number of hits observed with Goaccess, but the number of visitors is different. I don't understand why it happens and if it is correct to have 0 visitors. I am currently using the version 1.5.1, also I have configured the log-format to %h %^[%d:%t %^] "%r" %s %b "%R" "%u"
|
1.0
|
Problem with Goaccess and uncorrect number of visitors - Hi, I am new to goaccess and I have found a problem with my nginx log files. Goaccess extracts all the data correctly but sometimes, like in Not Found URLs (404s) table, it ends up having a 0 in visitors field whereas the number of hits is different from 0 for a given URL. On the other hand if I extract that given url directly from the file without using Goaccess (using grep...) I have the same number of hits observed with Goaccess, but the number of visitors is different. I don't understand why it happens and if it is correct to have 0 visitors. I am currently using the version 1.5.1, also I have configured the log-format to %h %^[%d:%t %^] "%r" %s %b "%R" "%u"
|
process
|
problem with goaccess and uncorrect number of visitors hi i am new to goaccess and i have found a problem with my nginx log files goaccess extracts all the data correctly but sometimes like in not found urls table it ends up having a in visitors field whereas the number of hits is different from for a given url on the other hand if i extract that given url directly from the file without using goaccess using grep i have the same number of hits observed with goaccess but the number of visitors is different i don t understand why it happens and if it is correct to have visitors i am currently using the version also i have configured the log format to h r s b r u
| 1
|
5,267
| 18,956,251,944
|
IssuesEvent
|
2021-11-18 20:38:44
|
IBM/FHIR
|
https://api.github.com/repos/IBM/FHIR
|
opened
|
Automation: Add Concurrency Controls to GitHub Workflow Actions
|
automation
|
**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Automation: Add Concurrency Controls to GitHub Workflow Actions
https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency
use head_ref + unique workflow on the group
```
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
```
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Acceptance Criteria**
1.
GIVEN [a precondition]
AND [another precondition]
WHEN [test step]
AND [test step]
THEN [verification step]
AND [verification step]
**Additional context**
Add any other context or screenshots about the feature request here.
|
1.0
|
Automation: Add Concurrency Controls to GitHub Workflow Actions - **Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
Automation: Add Concurrency Controls to GitHub Workflow Actions
https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#concurrency
use head_ref + unique workflow on the group
```
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
```
**Describe the solution you'd like**
A clear and concise description of what you want to happen.
**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.
**Acceptance Criteria**
1.
GIVEN [a precondition]
AND [another precondition]
WHEN [test step]
AND [test step]
THEN [verification step]
AND [verification step]
**Additional context**
Add any other context or screenshots about the feature request here.
|
non_process
|
automation add concurrency controls to github workflow actions is your feature request related to a problem please describe a clear and concise description of what the problem is ex i m always frustrated when automation add concurrency controls to github workflow actions use head ref unique workflow on the group concurrency group github head ref cancel in progress true describe the solution you d like a clear and concise description of what you want to happen describe alternatives you ve considered a clear and concise description of any alternative solutions or features you ve considered acceptance criteria given and when and then and additional context add any other context or screenshots about the feature request here
| 0
|
65,103
| 12,530,288,072
|
IssuesEvent
|
2020-06-04 12:50:37
|
nopSolutions/nopCommerce
|
https://api.github.com/repos/nopSolutions/nopCommerce
|
closed
|
Use Twitter Bootstrap
|
on hold / maybe wont refactoring / source code
|
Contribution for version 3.60: http://www.nopcommerce.com/boards/t/36904/new-100-bootstrap-theme.aspx and
Forum source: http://www.nopcommerce.com/boards/t/18801/nopcommerce-with-twitter-bootstrap.aspx
also see http://www.nopcommerce.com/boards/t/29026/free-bootstrap-default-theme.aspx#118204
one more theme - http://www.nopcommerce.com/p/1381/noproot-bootstrap-theme-free.aspx
and more theme (free) - https://github.com/phuochuy-github/Bootswatch-3.2.0-For-Nopcommerce-2.8
also http://www.nopcommerce.com/boards/t/29026/free-bootstrap-default-theme.aspx
|
1.0
|
Use Twitter Bootstrap - Contribution for version 3.60: http://www.nopcommerce.com/boards/t/36904/new-100-bootstrap-theme.aspx and
Forum source: http://www.nopcommerce.com/boards/t/18801/nopcommerce-with-twitter-bootstrap.aspx
also see http://www.nopcommerce.com/boards/t/29026/free-bootstrap-default-theme.aspx#118204
one more theme - http://www.nopcommerce.com/p/1381/noproot-bootstrap-theme-free.aspx
and more theme (free) - https://github.com/phuochuy-github/Bootswatch-3.2.0-For-Nopcommerce-2.8
also http://www.nopcommerce.com/boards/t/29026/free-bootstrap-default-theme.aspx
|
non_process
|
use twitter bootstrap contribution for version and forum source also see one more theme and more theme free also
| 0
|
53,154
| 13,128,685,301
|
IssuesEvent
|
2020-08-06 12:43:59
|
atc0005/send2teams
|
https://api.github.com/repos/atc0005/send2teams
|
opened
|
Use Docker-based GitHub Actions Workflows
|
CI builds dependencies enhancement linting
|
Swap out the GitHub Actions used for CI work with custom Docker containers from the atc0005/go-ci project.
refs atc0005/todo#22
|
1.0
|
Use Docker-based GitHub Actions Workflows - Swap out the GitHub Actions used for CI work with custom Docker containers from the atc0005/go-ci project.
refs atc0005/todo#22
|
non_process
|
use docker based github actions workflows swap out the github actions used for ci work with custom docker containers from the go ci project refs todo
| 0
|
757,085
| 26,495,566,236
|
IssuesEvent
|
2023-01-18 05:09:20
|
camsaul/toucan2
|
https://api.github.com/repos/camsaul/toucan2
|
opened
|
can `hydrate` be smart and itself be reducible as much as possible?
|
enhancement low priority performance
|
If we are doing "simple" hydration it seems like that should/could definitely been done using transducers and not with fully realized results.
If you try to hydrate an `IReduceInit` using a simple hydration method can we return an `Eduction`?
|
1.0
|
can `hydrate` be smart and itself be reducible as much as possible? - If we are doing "simple" hydration it seems like that should/could definitely been done using transducers and not with fully realized results.
If you try to hydrate an `IReduceInit` using a simple hydration method can we return an `Eduction`?
|
non_process
|
can hydrate be smart and itself be reducible as much as possible if we are doing simple hydration it seems like that should could definitely been done using transducers and not with fully realized results if you try to hydrate an ireduceinit using a simple hydration method can we return an eduction
| 0
|
604,312
| 18,681,449,663
|
IssuesEvent
|
2021-11-01 06:28:20
|
nimblehq/nimble-medium-ios
|
https://api.github.com/repos/nimblehq/nimble-medium-ios
|
closed
|
As a user, I can delete my article from the article details screen
|
type : feature category : ui priority : medium
|
## Why
When the users logged in the application successfully, they can delete their own article from the `Article Details` screen.
## Acceptance Criteria
- [ ] On the `Article Details` screen UI layout from #19, add a delete article button on the right side of the top navigation bar.
- [ ] Use the delete article icon from below resources.
- [ ] Hide the button by default.
## Resources
- The delete article icon:
https://icon-icons.com/icon/delete-outline/148544
- Sample top navigation bar with delete article option on the right:
<img width="345" alt="Screen Shot 2021-08-19 at 17 54 06 copy" src="https://user-images.githubusercontent.com/70877098/130057100-ea82de34-2c4a-4979-852f-67df4be886ec.png">
|
1.0
|
As a user, I can delete my article from the article details screen - ## Why
When the users logged in the application successfully, they can delete their own article from the `Article Details` screen.
## Acceptance Criteria
- [ ] On the `Article Details` screen UI layout from #19, add a delete article button on the right side of the top navigation bar.
- [ ] Use the delete article icon from below resources.
- [ ] Hide the button by default.
## Resources
- The delete article icon:
https://icon-icons.com/icon/delete-outline/148544
- Sample top navigation bar with delete article option on the right:
<img width="345" alt="Screen Shot 2021-08-19 at 17 54 06 copy" src="https://user-images.githubusercontent.com/70877098/130057100-ea82de34-2c4a-4979-852f-67df4be886ec.png">
|
non_process
|
as a user i can delete my article from the article details screen why when the users logged in the application successfully they can delete their own article from the article details screen acceptance criteria on the article details screen ui layout from add a delete article button on the right side of the top navigation bar use the delete article icon from below resources hide the button by default resources the delete article icon sample top navigation bar with delete article option on the right img width alt screen shot at copy src
| 0
|
83,336
| 15,703,260,802
|
IssuesEvent
|
2021-03-26 13:40:21
|
heholek/code-server
|
https://api.github.com/repos/heholek/code-server
|
opened
|
CVE-2021-23362 (Medium) detected in hosted-git-info-2.8.8.tgz
|
security vulnerability
|
## CVE-2021-23362 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>hosted-git-info-2.8.8.tgz</b></p></summary>
<p>Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab</p>
<p>Library home page: <a href="https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz">https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz</a></p>
<p>Path to dependency file: code-server/node_modules/hosted-git-info/package.json</p>
<p>Path to vulnerable library: code-server/node_modules/hosted-git-info/package.json,code-server/lib/vscode/node_modules/hosted-git-info/package.json</p>
<p>
Dependency Hierarchy:
- npm-run-all-4.1.5.tgz (Root Library)
- read-pkg-3.0.0.tgz
- normalize-package-data-2.5.0.tgz
- :x: **hosted-git-info-2.8.8.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/heholek/code-server/commit/7e554548dc1bc8303ace2dc334c19df0d673ee78">7e554548dc1bc8303ace2dc334c19df0d673ee78</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The package hosted-git-info before 3.0.8 are vulnerable to Regular Expression Denial of Service (ReDoS) via shortcutMatch in fromUrl().
<p>Publish Date: 2021-03-23
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23362>CVE-2021-23362</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/npm/hosted-git-info/releases/tag/v3.0.8">https://github.com/npm/hosted-git-info/releases/tag/v3.0.8</a></p>
<p>Release Date: 2021-03-23</p>
<p>Fix Resolution: hosted-git-info - 3.0.8</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2021-23362 (Medium) detected in hosted-git-info-2.8.8.tgz - ## CVE-2021-23362 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>hosted-git-info-2.8.8.tgz</b></p></summary>
<p>Provides metadata and conversions from repository urls for Github, Bitbucket and Gitlab</p>
<p>Library home page: <a href="https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz">https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz</a></p>
<p>Path to dependency file: code-server/node_modules/hosted-git-info/package.json</p>
<p>Path to vulnerable library: code-server/node_modules/hosted-git-info/package.json,code-server/lib/vscode/node_modules/hosted-git-info/package.json</p>
<p>
Dependency Hierarchy:
- npm-run-all-4.1.5.tgz (Root Library)
- read-pkg-3.0.0.tgz
- normalize-package-data-2.5.0.tgz
- :x: **hosted-git-info-2.8.8.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/heholek/code-server/commit/7e554548dc1bc8303ace2dc334c19df0d673ee78">7e554548dc1bc8303ace2dc334c19df0d673ee78</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
The package hosted-git-info before 3.0.8 are vulnerable to Regular Expression Denial of Service (ReDoS) via shortcutMatch in fromUrl().
<p>Publish Date: 2021-03-23
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23362>CVE-2021-23362</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: Low
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/npm/hosted-git-info/releases/tag/v3.0.8">https://github.com/npm/hosted-git-info/releases/tag/v3.0.8</a></p>
<p>Release Date: 2021-03-23</p>
<p>Fix Resolution: hosted-git-info - 3.0.8</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_process
|
cve medium detected in hosted git info tgz cve medium severity vulnerability vulnerable library hosted git info tgz provides metadata and conversions from repository urls for github bitbucket and gitlab library home page a href path to dependency file code server node modules hosted git info package json path to vulnerable library code server node modules hosted git info package json code server lib vscode node modules hosted git info package json dependency hierarchy npm run all tgz root library read pkg tgz normalize package data tgz x hosted git info tgz vulnerable library found in head commit a href vulnerability details the package hosted git info before are vulnerable to regular expression denial of service redos via shortcutmatch in fromurl publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution hosted git info step up your open source security game with whitesource
| 0
|
20,246
| 4,532,347,988
|
IssuesEvent
|
2016-09-08 07:45:07
|
hashicorp/terraform
|
https://api.github.com/repos/hashicorp/terraform
|
closed
|
Bad wording in website/source/docs/configuration/providers.html.md
|
documentation easy
|
>The primary use case for this for multiple cloud regions.
Should this be *The primary use case for this is multiple cloud regions* instead?
>Other use cases including targeting multiple Docker hosts, multiple Consul hosts, etc.
Should this be *Other use cases include targeting multiple Docker hosts, multiple Consul hosts, etc.* instead?
|
1.0
|
Bad wording in website/source/docs/configuration/providers.html.md - >The primary use case for this for multiple cloud regions.
Should this be *The primary use case for this is multiple cloud regions* instead?
>Other use cases including targeting multiple Docker hosts, multiple Consul hosts, etc.
Should this be *Other use cases include targeting multiple Docker hosts, multiple Consul hosts, etc.* instead?
|
non_process
|
bad wording in website source docs configuration providers html md the primary use case for this for multiple cloud regions should this be the primary use case for this is multiple cloud regions instead other use cases including targeting multiple docker hosts multiple consul hosts etc should this be other use cases include targeting multiple docker hosts multiple consul hosts etc instead
| 0
|
82,441
| 7,841,274,505
|
IssuesEvent
|
2018-06-18 19:03:07
|
rancher/rancher
|
https://api.github.com/repos/rancher/rancher
|
closed
|
Azure AD - Loses connection to rancher server
|
area/authentication kind/bug status/resolved status/to-test version/2.0
|
**Rancher versions:**
6/14/18
**Steps to Reproduce:**
Create a new rancher server
Add Azure AD Authentication
Set site access to "Allow members of Clusters, Projects, plus Authorized users Organizations"
Add multiple users to the list.
Select Save.
**Results:**
After a period of time (I Can't get this to reproduce reliably, saw it 3 times while testing), the connection to Azure AD is lost. Added users as listed as "unable to fetch info" and you are unable to search for other users. Associated API call fails when attempting to search for users.
<img width="930" alt="screen shot 2018-06-14 at 3 39 53 pm" src="https://user-images.githubusercontent.com/38012481/41477279-9f7289e6-7078-11e8-890b-f6baa0410c2f.png">
```
{
"actionLinks":{
},
"baseType":"error",
"code":"NotFound",
"links":{
},
"message":"azure.BearerAuthorizer#WithAuthorization: Failed to refresh the Token for request to https://graph.windows.net/564b6f53-ebf4-43c3-8077-44c56a44990a/groups/a615fbd7-e72a-4fe4-b782-ab1ac0785877?api-version=1.6: StatusCode=401 -- Original Error: adal: Refresh request failed. Status Code = '401'. Response body: {\"error\":\"invalid_client\",\"error_description\":\"AADSTS70002: The request body must contain the following parameter: 'client_secret or client_assertion'.\\r\\nTrace ID: cd693115-04e3-492c-b6aa-f6f009363c00\\r\\nCorrelation ID: d7335d43-1c58-4cbe-927c-a5fee6a671d5\\r\\nTimestamp: 2018-06-14 22:39:15Z\",\"error_codes\":[70002],\"timestamp\":\"2018-06-14 22:39:15Z\",\"trace_id\":\"cd693115-04e3-492c-b6aa-f6f009363c00\",\"correlation_id\":\"d7335d43-1c58-4cbe-927c-a5fee6a671d5\"}",
"status":404,
"type":"error"
}
```
|
1.0
|
Azure AD - Loses connection to rancher server - **Rancher versions:**
6/14/18
**Steps to Reproduce:**
Create a new rancher server
Add Azure AD Authentication
Set site access to "Allow members of Clusters, Projects, plus Authorized users Organizations"
Add multiple users to the list.
Select Save.
**Results:**
After a period of time (I Can't get this to reproduce reliably, saw it 3 times while testing), the connection to Azure AD is lost. Added users as listed as "unable to fetch info" and you are unable to search for other users. Associated API call fails when attempting to search for users.
<img width="930" alt="screen shot 2018-06-14 at 3 39 53 pm" src="https://user-images.githubusercontent.com/38012481/41477279-9f7289e6-7078-11e8-890b-f6baa0410c2f.png">
```
{
"actionLinks":{
},
"baseType":"error",
"code":"NotFound",
"links":{
},
"message":"azure.BearerAuthorizer#WithAuthorization: Failed to refresh the Token for request to https://graph.windows.net/564b6f53-ebf4-43c3-8077-44c56a44990a/groups/a615fbd7-e72a-4fe4-b782-ab1ac0785877?api-version=1.6: StatusCode=401 -- Original Error: adal: Refresh request failed. Status Code = '401'. Response body: {\"error\":\"invalid_client\",\"error_description\":\"AADSTS70002: The request body must contain the following parameter: 'client_secret or client_assertion'.\\r\\nTrace ID: cd693115-04e3-492c-b6aa-f6f009363c00\\r\\nCorrelation ID: d7335d43-1c58-4cbe-927c-a5fee6a671d5\\r\\nTimestamp: 2018-06-14 22:39:15Z\",\"error_codes\":[70002],\"timestamp\":\"2018-06-14 22:39:15Z\",\"trace_id\":\"cd693115-04e3-492c-b6aa-f6f009363c00\",\"correlation_id\":\"d7335d43-1c58-4cbe-927c-a5fee6a671d5\"}",
"status":404,
"type":"error"
}
```
|
non_process
|
azure ad loses connection to rancher server rancher versions steps to reproduce create a new rancher server add azure ad authentication set site access to allow members of clusters projects plus authorized users organizations add multiple users to the list select save results after a period of time i can t get this to reproduce reliably saw it times while testing the connection to azure ad is lost added users as listed as unable to fetch info and you are unable to search for other users associated api call fails when attempting to search for users img width alt screen shot at pm src actionlinks basetype error code notfound links message azure bearerauthorizer withauthorization failed to refresh the token for request to statuscode original error adal refresh request failed status code response body error invalid client error description the request body must contain the following parameter client secret or client assertion r ntrace id r ncorrelation id r ntimestamp error codes timestamp trace id correlation id status type error
| 0
|
2,370
| 5,168,119,850
|
IssuesEvent
|
2017-01-17 20:41:44
|
rubberduck-vba/Rubberduck
|
https://api.github.com/repos/rubberduck-vba/Rubberduck
|
closed
|
Undeclared variable cannot be a bracketed identifier
|
enhancement parse-tree-processing
|
This code compiles, but throws a runtime error 424 / "Object required":
````vb
Public Sub Test()
[foo bar] = 42
Debug.Print [foo bar]
End Sub
````
By *not* creating an undeclared variable declaration for undeclared bracketed identifiers, we'll stop tripping inspection results for actual legit bracketed expressions, for example `[H2]` here:
Set rFind = sheet.Cells.Find("Index", [H2], xlValues, xlWhole, xlByColumns, xlNext)
If, instead of spawning a variable for an undeclared bracketed identifier, the resolver spawned some `DeclarationType.RuntimeExpression` (or something like it), ...we would still have visibility on them, and wouldn't pollute the `Declarations` collection with variables that aren't variables.
|
1.0
|
Undeclared variable cannot be a bracketed identifier - This code compiles, but throws a runtime error 424 / "Object required":
````vb
Public Sub Test()
[foo bar] = 42
Debug.Print [foo bar]
End Sub
````
By *not* creating an undeclared variable declaration for undeclared bracketed identifiers, we'll stop tripping inspection results for actual legit bracketed expressions, for example `[H2]` here:
Set rFind = sheet.Cells.Find("Index", [H2], xlValues, xlWhole, xlByColumns, xlNext)
If, instead of spawning a variable for an undeclared bracketed identifier, the resolver spawned some `DeclarationType.RuntimeExpression` (or something like it), ...we would still have visibility on them, and wouldn't pollute the `Declarations` collection with variables that aren't variables.
|
process
|
undeclared variable cannot be a bracketed identifier this code compiles but throws a runtime error object required vb public sub test debug print end sub by not creating an undeclared variable declaration for undeclared bracketed identifiers we ll stop tripping inspection results for actual legit bracketed expressions for example here set rfind sheet cells find index xlvalues xlwhole xlbycolumns xlnext if instead of spawning a variable for an undeclared bracketed identifier the resolver spawned some declarationtype runtimeexpression or something like it we would still have visibility on them and wouldn t pollute the declarations collection with variables that aren t variables
| 1
|
17,791
| 23,718,792,129
|
IssuesEvent
|
2022-08-30 13:51:43
|
dita-ot/dita-ot
|
https://api.github.com/repos/dita-ot/dita-ot
|
closed
|
NPE in NormalizeTableFilter
|
bug priority/medium preprocess
|
I'm attaching a sample DITA OT project, when published to PDF it yields this NPE:
/Users/..dita-ot/plugins/org.dita.base/build_preprocess.xml:194: java.lang.NullPointerException
at org.dita.dost.writer.NormalizeTableFilter.startElement(NormalizeTableFilter.java:112)
at org.xml.sax.helpers.XMLFilterImpl.startElement(XMLFilterImpl.java:551)
at org.dita.dost.writer.TopicFragmentFilter.startElement(TopicFragmentFilter.java:79)
at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
at org.ditang.relaxng.defaults.RelaxNGDefaultsComponent.startElement(Unknown Source)
[npeinTableNormalizer.zip](https://github.com/dita-ot/dita-ot/files/5299005/npeinTableNormalizer.zip)
It is one of the automated tests which failed on our side after updating from DITA OT 3.5.1 to DITA OT 3.5.4 in the Oxygen bundled DITA OT.
Somehow if you look in the attached project the table rows are reused by themselves in an on the fly DITA specialization which Oxygen creates when calling its "Reuse content" action. I know it's not an usual test, but in my opinion the filter should strive not to throw unhandled error and also this is a real case, the samples were provided by a client for another issue a long time ago.
|
1.0
|
NPE in NormalizeTableFilter - I'm attaching a sample DITA OT project, when published to PDF it yields this NPE:
/Users/..dita-ot/plugins/org.dita.base/build_preprocess.xml:194: java.lang.NullPointerException
at org.dita.dost.writer.NormalizeTableFilter.startElement(NormalizeTableFilter.java:112)
at org.xml.sax.helpers.XMLFilterImpl.startElement(XMLFilterImpl.java:551)
at org.dita.dost.writer.TopicFragmentFilter.startElement(TopicFragmentFilter.java:79)
at org.apache.xerces.parsers.AbstractSAXParser.startElement(Unknown Source)
at org.ditang.relaxng.defaults.RelaxNGDefaultsComponent.startElement(Unknown Source)
[npeinTableNormalizer.zip](https://github.com/dita-ot/dita-ot/files/5299005/npeinTableNormalizer.zip)
It is one of the automated tests which failed on our side after updating from DITA OT 3.5.1 to DITA OT 3.5.4 in the Oxygen bundled DITA OT.
Somehow if you look in the attached project the table rows are reused by themselves in an on the fly DITA specialization which Oxygen creates when calling its "Reuse content" action. I know it's not an usual test, but in my opinion the filter should strive not to throw unhandled error and also this is a real case, the samples were provided by a client for another issue a long time ago.
|
process
|
npe in normalizetablefilter i m attaching a sample dita ot project when published to pdf it yields this npe users dita ot plugins org dita base build preprocess xml java lang nullpointerexception at org dita dost writer normalizetablefilter startelement normalizetablefilter java at org xml sax helpers xmlfilterimpl startelement xmlfilterimpl java at org dita dost writer topicfragmentfilter startelement topicfragmentfilter java at org apache xerces parsers abstractsaxparser startelement unknown source at org ditang relaxng defaults relaxngdefaultscomponent startelement unknown source it is one of the automated tests which failed on our side after updating from dita ot to dita ot in the oxygen bundled dita ot somehow if you look in the attached project the table rows are reused by themselves in an on the fly dita specialization which oxygen creates when calling its reuse content action i know it s not an usual test but in my opinion the filter should strive not to throw unhandled error and also this is a real case the samples were provided by a client for another issue a long time ago
| 1
|
18,928
| 24,883,046,834
|
IssuesEvent
|
2022-10-28 04:13:42
|
arcus-azure/arcus.messaging
|
https://api.github.com/repos/arcus-azure/arcus.messaging
|
closed
|
Simplify EventHubs message context retrieval
|
enhancement good first issue area:operations area:message-processing
|
**Is your feature request related to a problem? Please describe.**
Currently, one has to create the `AzureEventHubsMessageContext` themselves with a factory method. This often results in explicit code and unnecessary exposure of boilerplate types.
**Describe the solution you'd like**
Usability can be improved if we hide this creation behind an `.GetMessageContext()` extension on the `EventData` like we do with Service Bus-related types.
|
1.0
|
Simplify EventHubs message context retrieval - **Is your feature request related to a problem? Please describe.**
Currently, one has to create the `AzureEventHubsMessageContext` themselves with a factory method. This often results in explicit code and unnecessary exposure of boilerplate types.
**Describe the solution you'd like**
Usability can be improved if we hide this creation behind an `.GetMessageContext()` extension on the `EventData` like we do with Service Bus-related types.
|
process
|
simplify eventhubs message context retrieval is your feature request related to a problem please describe currently one has to create the azureeventhubsmessagecontext themselves with a factory method this often results in explicit code and unnecessary exposure of boilerplate types describe the solution you d like usability can be improved if we hide this creation behind an getmessagecontext extension on the eventdata like we do with service bus related types
| 1
|
14,744
| 18,015,170,888
|
IssuesEvent
|
2021-09-16 13:13:02
|
zephyrproject-rtos/zephyr
|
https://api.github.com/repos/zephyrproject-rtos/zephyr
|
closed
|
get_maintainer.py cannot parse MAINTAINERS.yml
|
bug priority: low Process
|
**Describe the bug**
The script get_maintainer.py cannot parse MAINTAINERS.yml
It seems the syntax of MAINTAINERS.yml has diverged quite a bit from what get_maintainers can process.
**To Reproduce**
Steps to reproduce the behavior:
1. Try running get_maintainers against any file:
```
$ scripts/get_maintainer.py path CMakeLists.txt
```
**Expected behavior**
get_maintainer not erroring out
**Impact**
Users cannot use script to find maintainers
**Logs and console output**
```$ scripts/get_maintainer.py path CMakeLists.txt
scripts/get_maintainer.py: error: zephyr/MAINTAINERS.yml: glob pattern 'subsys/bluetooth/*' in 'files' in area 'Bluetooth' matches a directory, but has no trailing '/'
```
**Environment (please complete the following information):**
- OS: Linux
- Python 3.6.8
|
1.0
|
get_maintainer.py cannot parse MAINTAINERS.yml - **Describe the bug**
The script get_maintainer.py cannot parse MAINTAINERS.yml
It seems the syntax of MAINTAINERS.yml has diverged quite a bit from what get_maintainers can process.
**To Reproduce**
Steps to reproduce the behavior:
1. Try running get_maintainers against any file:
```
$ scripts/get_maintainer.py path CMakeLists.txt
```
**Expected behavior**
get_maintainer not erroring out
**Impact**
Users cannot use script to find maintainers
**Logs and console output**
```$ scripts/get_maintainer.py path CMakeLists.txt
scripts/get_maintainer.py: error: zephyr/MAINTAINERS.yml: glob pattern 'subsys/bluetooth/*' in 'files' in area 'Bluetooth' matches a directory, but has no trailing '/'
```
**Environment (please complete the following information):**
- OS: Linux
- Python 3.6.8
|
process
|
get maintainer py cannot parse maintainers yml describe the bug the script get maintainer py cannot parse maintainers yml it seems the syntax of maintainers yml has diverged quite a bit from what get maintainers can process to reproduce steps to reproduce the behavior try running get maintainers against any file scripts get maintainer py path cmakelists txt expected behavior get maintainer not erroring out impact users cannot use script to find maintainers logs and console output scripts get maintainer py path cmakelists txt scripts get maintainer py error zephyr maintainers yml glob pattern subsys bluetooth in files in area bluetooth matches a directory but has no trailing environment please complete the following information os linux python
| 1
|
358,959
| 25,210,104,198
|
IssuesEvent
|
2022-11-14 02:32:22
|
HappYness-Project/Happy-EventSourcing
|
https://api.github.com/repos/HappYness-Project/Happy-EventSourcing
|
opened
|
Category Api | Create api endpoint for creating category object.
|
documentation enhancement good first issue
|
# Features
* [post request] localhost/category
* Pass category json body
|
1.0
|
Category Api | Create api endpoint for creating category object. - # Features
* [post request] localhost/category
* Pass category json body
|
non_process
|
category api create api endpoint for creating category object features localhost category pass category json body
| 0
|
447,112
| 12,883,557,136
|
IssuesEvent
|
2020-07-12 22:54:06
|
Pemigrade/Acorn
|
https://api.github.com/repos/Pemigrade/Acorn
|
closed
|
Remove fall damage at spawn
|
Bug Report Denied Medium Priority
|
**Brief Description**
<!-- A clear and concise description of what you want to happen. -->
I want fall damage to be removed in the spawn worldguard region.
**Why do you want the feature?**
<!-- The reasons why you want to see the feature implemented. -->
As of right now, if you jump off spawn and land on solid ground you can die and loose all your items, that shouldn't happen at the server's spawn.
|
1.0
|
Remove fall damage at spawn - **Brief Description**
<!-- A clear and concise description of what you want to happen. -->
I want fall damage to be removed in the spawn worldguard region.
**Why do you want the feature?**
<!-- The reasons why you want to see the feature implemented. -->
As of right now, if you jump off spawn and land on solid ground you can die and loose all your items, that shouldn't happen at the server's spawn.
|
non_process
|
remove fall damage at spawn brief description i want fall damage to be removed in the spawn worldguard region why do you want the feature as of right now if you jump off spawn and land on solid ground you can die and loose all your items that shouldn t happen at the server s spawn
| 0
|
335,619
| 10,164,163,023
|
IssuesEvent
|
2019-08-07 10:58:36
|
ballerina-platform/ballerina-lang
|
https://api.github.com/repos/ballerina-platform/ballerina-lang
|
closed
|
Import statements are added in invalid places when using language server code completion
|
Area/Tooling Priority/High Type/Bug
|
**Description:**
$subject.
**Steps to reproduce:**
1. Open a stream based ballerina file. (i.e. `join_multiple_streams.bal` BBE file).
2. Add a code snippet which requires a additional package import, at the end of the files. (i.e grpc service snippet)
3. You can see the import statement being add in the middle of the file.
**Affected Versions:**
1.0.0-alpha
**OS, DB, other environment details and versions:**
**Related Issues (optional):**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
**Suggested Labels (optional):**
<!-- Optional comma separated list of suggested labels. Non committers canโt assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees (optional):**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers canโt assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
|
1.0
|
Import statements are added in invalid places when using language server code completion - **Description:**
$subject.
**Steps to reproduce:**
1. Open a stream based ballerina file. (i.e. `join_multiple_streams.bal` BBE file).
2. Add a code snippet which requires a additional package import, at the end of the files. (i.e grpc service snippet)
3. You can see the import statement being add in the middle of the file.
**Affected Versions:**
1.0.0-alpha
**OS, DB, other environment details and versions:**
**Related Issues (optional):**
<!-- Any related issues such as sub tasks, issues reported in other repositories (e.g component repositories), similar problems, etc. -->
**Suggested Labels (optional):**
<!-- Optional comma separated list of suggested labels. Non committers canโt assign labels to issues, so this will help issue creators who are not a committer to suggest possible labels-->
**Suggested Assignees (optional):**
<!--Optional comma separated list of suggested team members who should attend the issue. Non committers canโt assign issues to assignees, so this will help issue creators who are not a committer to suggest possible assignees-->
|
non_process
|
import statements are added in invalid places when using language server code completion description subject steps to reproduce open a stream based ballerina file i e join multiple streams bal bbe file add a code snippet which requires a additional package import at the end of the files i e grpc service snippet you can see the import statement being add in the middle of the file affected versions alpha os db other environment details and versions related issues optional suggested labels optional suggested assignees optional
| 0
|
113,623
| 14,445,798,630
|
IssuesEvent
|
2020-12-07 23:45:34
|
carbon-design-system/carbon-for-ibm-dotcom
|
https://api.github.com/repos/carbon-design-system/carbon-for-ibm-dotcom
|
opened
|
React stand alone: ?component name? Prod QA testing
|
adopter support adopter: Hybrid cloud adopter: Reboot design
|
_**This work is a follow-on to the development work done to create / change the same Web Component version. The Web Component development was managed under epic (#TBD)**_
<!-- Avoid any type of solutions in this user story -->
<!-- replace _{{...}}_ with your own words or remove -->
#### User Story
<!-- {{Provide a detailed description of the user's need here, but avoid any type of solutions}} -->
> As a `[user role below]`:
developer using the ibm.com Library `?component name?`
> I need to:
have a version of the pattern or component that has been tested for accessibility compliance as well as on multiple browsers and platforms
> so that I can:
be confident that my ibm.com web site users will have a good experience
#### Additional information
<!-- {{Please provide any additional information or resources for reference}} -->
- [Browser Stack link](https://ibm.ent.box.com/notes/578734426612)
- [Browser Standard](https://w3.ibm.com/standards/web/browser/)
- Browser versions to be tested: Tier 1 browsers will be tested with defects created as Sev 1 or Sev 2. Tier 2 browser defects will be created as Sev 3 defects.
- Platforms to be tested, by priority: 1) Desktop 2) Mobile 3) Tablet
- Mobile & Tablet iOS versions: 13.1, 13.3 and 14
- Mobile & Tablet Android versions: 9.0 Pie and 8.1 Oreo
- Browsers to be tested: Desktop: Chrome, Firefox, Safari, Edge, Mobile: Chrome, Safari, Samsung Internet, UC Browser, Tablet: Safari, Chrome, Android
- [Accessibility Checklist](https://www.ibm.com/able/guidelines/ci162/accessibility_checklist.html)
- [Creating a QA bug](https://ibm.ent.box.com/notes/603242247385)
- **See the Epic for the Design and Functional specs information**
- Dev issue (#?dev issue?)
- ** Once development is finished the updated code is available on the [Canary URL](https://ibmdotcom-react-canary.mybluemix.net/?path=/story/overview-getting-started--page) for testing.**
#### Acceptance criteria
- [ ] Accessibility testing is complete. Component is compliant.
- [ ] All browser versions are tested
- [ ] All operating systems are tested
- [ ] All devices are tested
- [ ] Defects are recorded and retested when fixed
|
1.0
|
React stand alone: ?component name? Prod QA testing - _**This work is a follow-on to the development work done to create / change the same Web Component version. The Web Component development was managed under epic (#TBD)**_
<!-- Avoid any type of solutions in this user story -->
<!-- replace _{{...}}_ with your own words or remove -->
#### User Story
<!-- {{Provide a detailed description of the user's need here, but avoid any type of solutions}} -->
> As a `[user role below]`:
developer using the ibm.com Library `?component name?`
> I need to:
have a version of the pattern or component that has been tested for accessibility compliance as well as on multiple browsers and platforms
> so that I can:
be confident that my ibm.com web site users will have a good experience
#### Additional information
<!-- {{Please provide any additional information or resources for reference}} -->
- [Browser Stack link](https://ibm.ent.box.com/notes/578734426612)
- [Browser Standard](https://w3.ibm.com/standards/web/browser/)
- Browser versions to be tested: Tier 1 browsers will be tested with defects created as Sev 1 or Sev 2. Tier 2 browser defects will be created as Sev 3 defects.
- Platforms to be tested, by priority: 1) Desktop 2) Mobile 3) Tablet
- Mobile & Tablet iOS versions: 13.1, 13.3 and 14
- Mobile & Tablet Android versions: 9.0 Pie and 8.1 Oreo
- Browsers to be tested: Desktop: Chrome, Firefox, Safari, Edge, Mobile: Chrome, Safari, Samsung Internet, UC Browser, Tablet: Safari, Chrome, Android
- [Accessibility Checklist](https://www.ibm.com/able/guidelines/ci162/accessibility_checklist.html)
- [Creating a QA bug](https://ibm.ent.box.com/notes/603242247385)
- **See the Epic for the Design and Functional specs information**
- Dev issue (#?dev issue?)
- ** Once development is finished the updated code is available on the [Canary URL](https://ibmdotcom-react-canary.mybluemix.net/?path=/story/overview-getting-started--page) for testing.**
#### Acceptance criteria
- [ ] Accessibility testing is complete. Component is compliant.
- [ ] All browser versions are tested
- [ ] All operating systems are tested
- [ ] All devices are tested
- [ ] Defects are recorded and retested when fixed
|
non_process
|
react stand alone component name prod qa testing this work is a follow on to the development work done to create change the same web component version the web component development was managed under epic tbd user story as a developer using the ibm com library component name i need to have a version of the pattern or component that has been tested for accessibility compliance as well as on multiple browsers and platforms so that i can be confident that my ibm com web site users will have a good experience additional information browser versions to be tested tier browsers will be tested with defects created as sev or sev tier browser defects will be created as sev defects platforms to be tested by priority desktop mobile tablet mobile tablet ios versions and mobile tablet android versions pie and oreo browsers to be tested desktop chrome firefox safari edge mobile chrome safari samsung internet uc browser tablet safari chrome android see the epic for the design and functional specs information dev issue dev issue once development is finished the updated code is available on the for testing acceptance criteria accessibility testing is complete component is compliant all browser versions are tested all operating systems are tested all devices are tested defects are recorded and retested when fixed
| 0
|
8,193
| 11,393,545,234
|
IssuesEvent
|
2020-01-30 06:59:26
|
googleapis/google-cloud-python
|
https://api.github.com/repos/googleapis/google-cloud-python
|
closed
|
BigQuery: Adjust unit tests to the new default connection timeout in core
|
api: bigquery type: process
|
#10219 changed the default connection timeout, breaking a few unit test assertions in BigQuery. These assertions need to be adjusted to prevent the unnecessary failures.
|
1.0
|
BigQuery: Adjust unit tests to the new default connection timeout in core - #10219 changed the default connection timeout, breaking a few unit test assertions in BigQuery. These assertions need to be adjusted to prevent the unnecessary failures.
|
process
|
bigquery adjust unit tests to the new default connection timeout in core changed the default connection timeout breaking a few unit test assertions in bigquery these assertions need to be adjusted to prevent the unnecessary failures
| 1
|
6,675
| 9,792,216,184
|
IssuesEvent
|
2019-06-10 16:50:42
|
emacs-ess/ESS
|
https://api.github.com/repos/emacs-ess/ESS
|
closed
|
Don't show the inferior on interactive eval
|
process:eval
|
I am getting increasingly annoyed by our inconsistent show-iESS-on-eval behavior. Some commands do show the inferior, others don't.
I think by default we should show the inferior only on error and have this behavior customizable globally. The idea is that if the user wants to see the output he or she can switch to the inferior and keep the buffer open. When the buffer is hidden, we assume that the user wants it hidden. This is more or less how other eval systems in emas behave.
|
1.0
|
Don't show the inferior on interactive eval - I am getting increasingly annoyed by our inconsistent show-iESS-on-eval behavior. Some commands do show the inferior, others don't.
I think by default we should show the inferior only on error and have this behavior customizable globally. The idea is that if the user wants to see the output he or she can switch to the inferior and keep the buffer open. When the buffer is hidden, we assume that the user wants it hidden. This is more or less how other eval systems in emas behave.
|
process
|
don t show the inferior on interactive eval i am getting increasingly annoyed by our inconsistent show iess on eval behavior some commands do show the inferior others don t i think by default we should show the inferior only on error and have this behavior customizable globally the idea is that if the user wants to see the output he or she can switch to the inferior and keep the buffer open when the buffer is hidden we assume that the user wants it hidden this is more or less how other eval systems in emas behave
| 1
|
22,007
| 30,512,815,943
|
IssuesEvent
|
2023-07-18 22:37:53
|
googleapis/gax-nodejs
|
https://api.github.com/repos/googleapis/gax-nodejs
|
closed
|
Remove @types/rimraf
|
type: process priority: p3
|
I'm not sure, but it seems that this library is incompatible with any other library using `rimraf`, since v5 (or 4) it no longer exists the need for `@types/rimraf` and it collides with newer versions of `rimraf`, in my case on a NestJs (v10) application:
```
node_modules/@types/rimraf/index.d.ts:33:21 - error TS2694: Namespace '"./node_modules/glob/dist/mjs/index"' has no exported member 'IOptions'.
33 glob?: glob.IOptions | false | undefined;
```
Acording to https://stackoverflow.com/questions/75890950/node-modules-minimatch-dist-cjs-index-has-no-exported-member-ioptions, by simply updating this dependency the issue would be solved.
Thanks! (and hope this is the right place to place this issue/doubt)
|
1.0
|
Remove @types/rimraf - I'm not sure, but it seems that this library is incompatible with any other library using `rimraf`, since v5 (or 4) it no longer exists the need for `@types/rimraf` and it collides with newer versions of `rimraf`, in my case on a NestJs (v10) application:
```
node_modules/@types/rimraf/index.d.ts:33:21 - error TS2694: Namespace '"./node_modules/glob/dist/mjs/index"' has no exported member 'IOptions'.
33 glob?: glob.IOptions | false | undefined;
```
Acording to https://stackoverflow.com/questions/75890950/node-modules-minimatch-dist-cjs-index-has-no-exported-member-ioptions, by simply updating this dependency the issue would be solved.
Thanks! (and hope this is the right place to place this issue/doubt)
|
process
|
remove types rimraf i m not sure but it seems that this library is incompatible with any other library using rimraf since or it no longer exists the need for types rimraf and it collides with newer versions of rimraf in my case on a nestjs application node modules types rimraf index d ts error namespace node modules glob dist mjs index has no exported member ioptions glob glob ioptions false undefined acording to by simply updating this dependency the issue would be solved thanks and hope this is the right place to place this issue doubt
| 1
|
152,470
| 13,456,988,014
|
IssuesEvent
|
2020-09-09 08:36:34
|
google/web-stories-wp
|
https://api.github.com/repos/google/web-stories-wp
|
closed
|
Design the plugin icon image for the WordPress.org plugin page
|
Plugin Repository Pod: WP & Infra Type: Documentation Type: Task
|
As part of the release of the plugin to the WordPress.org plugin repository we will need to provide a number of assets to ensure that the plugin landing page is attractive & captivating.
example of such pages are:
https://wordpress.org/plugins/google-site-kit/
https://wordpress.org/plugins/amp/
Please provide the plugin icon image for the plugin
from: https://developer.wordpress.org/plugins/wordpress-org/plugin-assets/#plugin-icons
> Plugin Icons #Plugin Icons
> Plugin icons are square images that show on the side of the plugin in searches on WordPress.org but also on the back-end of WordPress.org.
>
> Akismet with it's Plugin Icon
> In addition to JPG and PNG formats, you can also use SVG. Vectors are perfect for icons, as they can be scaled to any size and the file itself is small. If you chose to use SVGs, you must also use a PNG icon as a fallback, otherwise your plugin icon will not display properly in older browsers or on Facebook.
>
> If you do not use an icon, an auto-generated one will be made for you. Some examples are the circled icons below:
>
> Example of auto-generated icons
> Top โ
>
> Filenames #Filenames
> Normal: icon-128x128.(png|jpg)
> High-DPI (Retina): icon-256x256.(png|jpg)
> SVG: icon.svg
> There are no plans to change these sizes.
|
1.0
|
Design the plugin icon image for the WordPress.org plugin page - As part of the release of the plugin to the WordPress.org plugin repository we will need to provide a number of assets to ensure that the plugin landing page is attractive & captivating.
example of such pages are:
https://wordpress.org/plugins/google-site-kit/
https://wordpress.org/plugins/amp/
Please provide the plugin icon image for the plugin
from: https://developer.wordpress.org/plugins/wordpress-org/plugin-assets/#plugin-icons
> Plugin Icons #Plugin Icons
> Plugin icons are square images that show on the side of the plugin in searches on WordPress.org but also on the back-end of WordPress.org.
>
> Akismet with it's Plugin Icon
> In addition to JPG and PNG formats, you can also use SVG. Vectors are perfect for icons, as they can be scaled to any size and the file itself is small. If you chose to use SVGs, you must also use a PNG icon as a fallback, otherwise your plugin icon will not display properly in older browsers or on Facebook.
>
> If you do not use an icon, an auto-generated one will be made for you. Some examples are the circled icons below:
>
> Example of auto-generated icons
> Top โ
>
> Filenames #Filenames
> Normal: icon-128x128.(png|jpg)
> High-DPI (Retina): icon-256x256.(png|jpg)
> SVG: icon.svg
> There are no plans to change these sizes.
|
non_process
|
design the plugin icon image for the wordpress org plugin page as part of the release of the plugin to the wordpress org plugin repository we will need to provide a number of assets to ensure that the plugin landing page is attractive captivating example of such pages are please provide the plugin icon image for the plugin from plugin icons plugin icons plugin icons are square images that show on the side of the plugin in searches on wordpress org but also on the back end of wordpress org akismet with it s plugin icon in addition to jpg and png formats you can also use svg vectors are perfect for icons as they can be scaled to any size and the file itself is small if you chose to use svgs you must also use a png icon as a fallback otherwise your plugin icon will not display properly in older browsers or on facebook if you do not use an icon an auto generated one will be made for you some examples are the circled icons below example of auto generated icons top โ filenames filenames normal icon png jpg high dpi retina icon png jpg svg icon svg there are no plans to change these sizes
| 0
|
6,823
| 9,967,118,285
|
IssuesEvent
|
2019-07-08 12:55:51
|
leecade/react-native-swiper
|
https://api.github.com/repos/leecade/react-native-swiper
|
closed
|
Optionally render page
|
enhancement ๐งprocessing
|
### Which OS ?
iOS & Android, doesn't matter.
### Version
- react-native-swiper `v1.5.13` & `v1.6.0@nightly.1`
- react-native `v0.57.8`
### Expected behaviour
A page that should be optionally rendered doesn't show up at all and reduces the total amount of pages to *one less than if optional page is rendered*.
### Actual behaviour
An empty page is shown, but the slide should be skipped completely.
### Steps to reproduce
```
<Swiper {...swiperProps}>
<View style={stylePage}>
<Text>Page 1 (always)</Text>
</View>
<View style={stylePage}>
<Text>Page 2 (always)</Text>
</View>
{ renderPage3 && // if this is set to "false", an empty page is shown
<View style={stylePage}>
<Text>Page 3 (optional)</Text>
</View>
}
<View style={stylePage}>
<Text>Page 4 (always)</Text>
</View>
</Swiper>
```
|
1.0
|
Optionally render page - ### Which OS ?
iOS & Android, doesn't matter.
### Version
- react-native-swiper `v1.5.13` & `v1.6.0@nightly.1`
- react-native `v0.57.8`
### Expected behaviour
A page that should be optionally rendered doesn't show up at all and reduces the total amount of pages to *one less than if optional page is rendered*.
### Actual behaviour
An empty page is shown, but the slide should be skipped completely.
### Steps to reproduce
```
<Swiper {...swiperProps}>
<View style={stylePage}>
<Text>Page 1 (always)</Text>
</View>
<View style={stylePage}>
<Text>Page 2 (always)</Text>
</View>
{ renderPage3 && // if this is set to "false", an empty page is shown
<View style={stylePage}>
<Text>Page 3 (optional)</Text>
</View>
}
<View style={stylePage}>
<Text>Page 4 (always)</Text>
</View>
</Swiper>
```
|
process
|
optionally render page which os ios android doesn t matter version react native swiper nightly react native expected behaviour a page that should be optionally rendered doesn t show up at all and reduces the total amount of pages to one less than if optional page is rendered actual behaviour an empty page is shown but the slide should be skipped completely steps to reproduce page always page always if this is set to false an empty page is shown page optional page always
| 1
|
81,212
| 30,753,742,196
|
IssuesEvent
|
2023-07-28 22:21:05
|
Sigil-Ebook/flightcrew
|
https://api.github.com/repos/Sigil-Ebook/flightcrew
|
closed
|
Bogus unreachability message when multiple font formats provided
|
Type-Defect Priority-Medium auto-migrated
|
```
What steps will reproduce the problem?
1. Create an EPUB book containing an @font-face rule with multiple formats,
e.g.
@font-face {
font-family: 'GFS Didot';
font-style: normal;
font-weight: normal;
src: url('fonts/GFSDidot/GFSDidot.ttf') format('truetype'), url('fonts/GFSDidot/GFSDidot.otf') format('opentype'), local('GFS Didot Regular'), local('GFSDidot-Regular');
}
2. Include both the TTF and OTF versions of the file.
What is the expected output? What do you see instead?
I would not expect any warning. Both files can potentially be used, depending
on what font formats the particular reader supports. Instead, the validator
warns that the OTF file is unreachable.
What version of the product are you using? On what operating system?
0.7.2/Mac OS X
```
Original issue reported on code.google.com by `dgatwoo...@gmail.com` on 24 Nov 2011 at 8:07
Attachments:
- [calibreFontBug.epub](https://storage.googleapis.com/google-code-attachments/flightcrew/issue-28/comment-0/calibreFontBug.epub)
|
1.0
|
Bogus unreachability message when multiple font formats provided - ```
What steps will reproduce the problem?
1. Create an EPUB book containing an @font-face rule with multiple formats,
e.g.
@font-face {
font-family: 'GFS Didot';
font-style: normal;
font-weight: normal;
src: url('fonts/GFSDidot/GFSDidot.ttf') format('truetype'), url('fonts/GFSDidot/GFSDidot.otf') format('opentype'), local('GFS Didot Regular'), local('GFSDidot-Regular');
}
2. Include both the TTF and OTF versions of the file.
What is the expected output? What do you see instead?
I would not expect any warning. Both files can potentially be used, depending
on what font formats the particular reader supports. Instead, the validator
warns that the OTF file is unreachable.
What version of the product are you using? On what operating system?
0.7.2/Mac OS X
```
Original issue reported on code.google.com by `dgatwoo...@gmail.com` on 24 Nov 2011 at 8:07
Attachments:
- [calibreFontBug.epub](https://storage.googleapis.com/google-code-attachments/flightcrew/issue-28/comment-0/calibreFontBug.epub)
|
non_process
|
bogus unreachability message when multiple font formats provided what steps will reproduce the problem create an epub book containing an font face rule with multiple formats e g font face font family gfs didot font style normal font weight normal src url fonts gfsdidot gfsdidot ttf format truetype url fonts gfsdidot gfsdidot otf format opentype local gfs didot regular local gfsdidot regular include both the ttf and otf versions of the file what is the expected output what do you see instead i would not expect any warning both files can potentially be used depending on what font formats the particular reader supports instead the validator warns that the otf file is unreachable what version of the product are you using on what operating system mac os x original issue reported on code google com by dgatwoo gmail com on nov at attachments
| 0
|
3,253
| 6,330,384,748
|
IssuesEvent
|
2017-07-26 07:14:46
|
neuropoly/spinalcordtoolbox
|
https://api.github.com/repos/neuropoly/spinalcordtoolbox
|
opened
|
Optimize gaussian_std parameter
|
card:WORK_IN_PROCESS enhancement priority:MEDIUM sct_label_vertebrae
|
### Description
Optimize `gaussian_std` parameter, which weights the mutual information curve for finding C2-C3 disk. Values to be tested on sct_testing/large t1 & t2 contrasts: 0.5, 0.8, 1, 1.2, 1.5
### State of spinalcordtoolbox
### Optimization results
WORK IN PROGRESS
|
1.0
|
Optimize gaussian_std parameter - ### Description
Optimize `gaussian_std` parameter, which weights the mutual information curve for finding C2-C3 disk. Values to be tested on sct_testing/large t1 & t2 contrasts: 0.5, 0.8, 1, 1.2, 1.5
### State of spinalcordtoolbox
### Optimization results
WORK IN PROGRESS
|
process
|
optimize gaussian std parameter description optimize gaussian std parameter which weights the mutual information curve for finding disk values to be tested on sct testing large contrasts state of spinalcordtoolbox optimization results work in progress
| 1
|
109,880
| 16,902,887,387
|
IssuesEvent
|
2021-06-24 01:02:16
|
billmcchesney1/concord
|
https://api.github.com/repos/billmcchesney1/concord
|
opened
|
CVE-2021-28169 (Medium) detected in jetty-http-9.4.26.v20200117.jar, jetty-server-9.4.26.v20200117.jar
|
security vulnerability
|
## CVE-2021-28169 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jetty-http-9.4.26.v20200117.jar</b>, <b>jetty-server-9.4.26.v20200117.jar</b></p></summary>
<p>
<details><summary><b>jetty-http-9.4.26.v20200117.jar</b></p></summary>
<p>The Eclipse Jetty Project</p>
<p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p>
<p>Path to dependency file: concord/docker-images/agent/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-http/9.4.26.v20200117/jetty-http-9.4.26.v20200117.jar,/home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-http/9.4.26.v20200117/jetty-http-9.4.26.v20200117.jar,/home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-http/9.4.26.v20200117/jetty-http-9.4.26.v20200117.jar,canner/.m2/repository/org/eclipse/jetty/jetty-http/9.4.26.v20200117/jetty-http-9.4.26.v20200117.jar</p>
<p>
Dependency Hierarchy:
- :x: **jetty-http-9.4.26.v20200117.jar** (Vulnerable Library)
</details>
<details><summary><b>jetty-server-9.4.26.v20200117.jar</b></p></summary>
<p>The core jetty server artifact.</p>
<p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p>
<p>Path to dependency file: concord/server/plugins/noderoster/impl/pom.xml</p>
<p>Path to vulnerable library: canner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.26.v20200117/jetty-server-9.4.26.v20200117.jar,canner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.26.v20200117/jetty-server-9.4.26.v20200117.jar</p>
<p>
Dependency Hierarchy:
- :x: **jetty-server-9.4.26.v20200117.jar** (Vulnerable Library)
</details>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
For Eclipse Jetty versions <= 9.4.40, <= 10.0.2, <= 11.0.2, it is possible for requests to the ConcatServlet with a doubly encoded path to access protected resources within the WEB-INF directory. For example a request to `/concat?/%2557EB-INF/web.xml` can retrieve the web.xml file. This can reveal sensitive information regarding the implementation of a web application.
<p>Publish Date: 2021-06-09
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-28169>CVE-2021-28169</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/eclipse/jetty.project/security/advisories/GHSA-gwcr-j4wh-j3cq">https://github.com/eclipse/jetty.project/security/advisories/GHSA-gwcr-j4wh-j3cq</a></p>
<p>Release Date: 2021-06-09</p>
<p>Fix Resolution: org.eclipse.jetty:jetty-runner:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-http:9.4.41.v20210516, 10.0.3, 11.0.3,org.eclipse.jetty:jetty-servlets:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-server:9.4.41.v20210516, 10.0.3, 11.0.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.eclipse.jetty","packageName":"jetty-http","packageVersion":"9.4.26.v20200117","packageFilePaths":["/docker-images/agent/pom.xml","/server/queue-client/pom.xml","/server/plugins/noderoster/impl/pom.xml","/server/impl/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.eclipse.jetty:jetty-http:9.4.26.v20200117","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.eclipse.jetty:jetty-runner:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-http:9.4.41.v20210516, 10.0.3, 11.0.3,org.eclipse.jetty:jetty-servlets:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-server:9.4.41.v20210516, 10.0.3, 11.0.3"},{"packageType":"Java","groupId":"org.eclipse.jetty","packageName":"jetty-server","packageVersion":"9.4.26.v20200117","packageFilePaths":["/server/plugins/noderoster/impl/pom.xml","/server/impl/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.eclipse.jetty:jetty-server:9.4.26.v20200117","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.eclipse.jetty:jetty-runner:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-http:9.4.41.v20210516, 10.0.3, 11.0.3,org.eclipse.jetty:jetty-servlets:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-server:9.4.41.v20210516, 10.0.3, 11.0.3"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-28169","vulnerabilityDetails":"For Eclipse Jetty versions \u003c\u003d 9.4.40, \u003c\u003d 10.0.2, \u003c\u003d 11.0.2, it is possible for requests to the ConcatServlet with a doubly encoded path to access protected resources within the WEB-INF directory. For example a request to `/concat?/%2557EB-INF/web.xml` can retrieve the web.xml file. This can reveal sensitive information regarding the implementation of a web application.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-28169","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
|
True
|
CVE-2021-28169 (Medium) detected in jetty-http-9.4.26.v20200117.jar, jetty-server-9.4.26.v20200117.jar - ## CVE-2021-28169 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>jetty-http-9.4.26.v20200117.jar</b>, <b>jetty-server-9.4.26.v20200117.jar</b></p></summary>
<p>
<details><summary><b>jetty-http-9.4.26.v20200117.jar</b></p></summary>
<p>The Eclipse Jetty Project</p>
<p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p>
<p>Path to dependency file: concord/docker-images/agent/pom.xml</p>
<p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-http/9.4.26.v20200117/jetty-http-9.4.26.v20200117.jar,/home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-http/9.4.26.v20200117/jetty-http-9.4.26.v20200117.jar,/home/wss-scanner/.m2/repository/org/eclipse/jetty/jetty-http/9.4.26.v20200117/jetty-http-9.4.26.v20200117.jar,canner/.m2/repository/org/eclipse/jetty/jetty-http/9.4.26.v20200117/jetty-http-9.4.26.v20200117.jar</p>
<p>
Dependency Hierarchy:
- :x: **jetty-http-9.4.26.v20200117.jar** (Vulnerable Library)
</details>
<details><summary><b>jetty-server-9.4.26.v20200117.jar</b></p></summary>
<p>The core jetty server artifact.</p>
<p>Library home page: <a href="http://www.eclipse.org/jetty">http://www.eclipse.org/jetty</a></p>
<p>Path to dependency file: concord/server/plugins/noderoster/impl/pom.xml</p>
<p>Path to vulnerable library: canner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.26.v20200117/jetty-server-9.4.26.v20200117.jar,canner/.m2/repository/org/eclipse/jetty/jetty-server/9.4.26.v20200117/jetty-server-9.4.26.v20200117.jar</p>
<p>
Dependency Hierarchy:
- :x: **jetty-server-9.4.26.v20200117.jar** (Vulnerable Library)
</details>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
For Eclipse Jetty versions <= 9.4.40, <= 10.0.2, <= 11.0.2, it is possible for requests to the ConcatServlet with a doubly encoded path to access protected resources within the WEB-INF directory. For example a request to `/concat?/%2557EB-INF/web.xml` can retrieve the web.xml file. This can reveal sensitive information regarding the implementation of a web application.
<p>Publish Date: 2021-06-09
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-28169>CVE-2021-28169</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.3</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: Low
- Integrity Impact: None
- Availability Impact: None
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/eclipse/jetty.project/security/advisories/GHSA-gwcr-j4wh-j3cq">https://github.com/eclipse/jetty.project/security/advisories/GHSA-gwcr-j4wh-j3cq</a></p>
<p>Release Date: 2021-06-09</p>
<p>Fix Resolution: org.eclipse.jetty:jetty-runner:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-http:9.4.41.v20210516, 10.0.3, 11.0.3,org.eclipse.jetty:jetty-servlets:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-server:9.4.41.v20210516, 10.0.3, 11.0.3</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.eclipse.jetty","packageName":"jetty-http","packageVersion":"9.4.26.v20200117","packageFilePaths":["/docker-images/agent/pom.xml","/server/queue-client/pom.xml","/server/plugins/noderoster/impl/pom.xml","/server/impl/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.eclipse.jetty:jetty-http:9.4.26.v20200117","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.eclipse.jetty:jetty-runner:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-http:9.4.41.v20210516, 10.0.3, 11.0.3,org.eclipse.jetty:jetty-servlets:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-server:9.4.41.v20210516, 10.0.3, 11.0.3"},{"packageType":"Java","groupId":"org.eclipse.jetty","packageName":"jetty-server","packageVersion":"9.4.26.v20200117","packageFilePaths":["/server/plugins/noderoster/impl/pom.xml","/server/impl/pom.xml"],"isTransitiveDependency":false,"dependencyTree":"org.eclipse.jetty:jetty-server:9.4.26.v20200117","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.eclipse.jetty:jetty-runner:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-http:9.4.41.v20210516, 10.0.3, 11.0.3,org.eclipse.jetty:jetty-servlets:9.4.41.v20210516, 10.0.3, 11.0.3, org.eclipse.jetty:jetty-server:9.4.41.v20210516, 10.0.3, 11.0.3"}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-28169","vulnerabilityDetails":"For Eclipse Jetty versions \u003c\u003d 9.4.40, \u003c\u003d 10.0.2, \u003c\u003d 11.0.2, it is possible for requests to the ConcatServlet with a doubly encoded path to access protected resources within the WEB-INF directory. For example a request to `/concat?/%2557EB-INF/web.xml` can retrieve the web.xml file. This can reveal sensitive information regarding the implementation of a web application.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-28169","cvss3Severity":"medium","cvss3Score":"5.3","cvss3Metrics":{"A":"None","AC":"Low","PR":"None","S":"Unchanged","C":"Low","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
|
non_process
|
cve medium detected in jetty http jar jetty server jar cve medium severity vulnerability vulnerable libraries jetty http jar jetty server jar jetty http jar the eclipse jetty project library home page a href path to dependency file concord docker images agent pom xml path to vulnerable library home wss scanner repository org eclipse jetty jetty http jetty http jar home wss scanner repository org eclipse jetty jetty http jetty http jar home wss scanner repository org eclipse jetty jetty http jetty http jar canner repository org eclipse jetty jetty http jetty http jar dependency hierarchy x jetty http jar vulnerable library jetty server jar the core jetty server artifact library home page a href path to dependency file concord server plugins noderoster impl pom xml path to vulnerable library canner repository org eclipse jetty jetty server jetty server jar canner repository org eclipse jetty jetty server jetty server jar dependency hierarchy x jetty server jar vulnerable library found in base branch master vulnerability details for eclipse jetty versions it is possible for requests to the concatservlet with a doubly encoded path to access protected resources within the web inf directory for example a request to concat inf web xml can retrieve the web xml file this can reveal sensitive information regarding the implementation of a web application publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact none availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org eclipse jetty jetty runner org eclipse jetty jetty http org eclipse jetty jetty servlets org eclipse jetty jetty server isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree org eclipse jetty jetty http isminimumfixversionavailable true minimumfixversion org eclipse jetty jetty runner org eclipse jetty jetty http org eclipse jetty jetty servlets org eclipse jetty jetty server packagetype java groupid org eclipse jetty packagename jetty server packageversion packagefilepaths istransitivedependency false dependencytree org eclipse jetty jetty server isminimumfixversionavailable true minimumfixversion org eclipse jetty jetty runner org eclipse jetty jetty http org eclipse jetty jetty servlets org eclipse jetty jetty server basebranches vulnerabilityidentifier cve vulnerabilitydetails for eclipse jetty versions it is possible for requests to the concatservlet with a doubly encoded path to access protected resources within the web inf directory for example a request to concat inf web xml can retrieve the web xml file this can reveal sensitive information regarding the implementation of a web application vulnerabilityurl
| 0
|
12,842
| 15,224,388,504
|
IssuesEvent
|
2021-02-18 05:07:09
|
pingcap/tidb
|
https://api.github.com/repos/pingcap/tidb
|
closed
|
Error `Unsupported type: Null` occurred when updating the table using a no else CASE.
|
challenge-program component/coprocessor severity/moderate sig/execution status/help-wanted type/bug
|
## Description
## Bug Report
Please answer these questions before submitting your issue. Thanks!
### 1. Minimal reproduce step (Required)
<!-- a step by step guide for reproducing the bug. -->
```sql
CREATE TABLE `table_int_float_varchar` (
`id_6` int(16) NOT NULL AUTO_INCREMENT,
`col_int_6` int(16) DEFAULT NULL,
`col_float_6` float DEFAULT NULL,
`col_varchar_6` varchar(511) DEFAULT NULL,
PRIMARY KEY (`id_6`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin AUTO_INCREMENT=397991;
UPDATE IGNORE table_int_float_varchar SET table_int_float_varchar.col_int_6 = 1 WHERE (CASE WHEN NULL THEN NULL END) is NULL;
```
### 2. What did you expect to see? (Required)
```log
mysql> UPDATE IGNORE table_int_float_varchar SET table_int_float_varchar.col_int_6 = 1 WHERE (CASE WHEN NULL THEN NULL END) is NULL;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0 Changed: 0 Warnings: 0
```
### 3. What did you see instead (Required)
```log
MySQL [test]> UPDATE IGNORE table_int_float_varchar SET table_int_float_varchar.col_int_6 = 1 WHERE (CASE WHEN NULL THEN NULL END) is NULL;
ERROR 1105 (HY000): other error: [components/tidb_query_vec_executors/src/runner.rs:83]: BatchSelectionExecutor: Evaluate error: [components/tidb_query_vec_expr/src/types/expr_builder.rs:26]: Unsupported type: Null
```
### 4. Affected version (Required)
<!-- v3.0.0, v4.0.0, etc -->
```bash
$ /data1/jenkins/deploy/bin/tidb-server -V
Release Version: v4.0.0-beta.2-517-gaf7bbbe24
Edition: Community
Git Commit Hash: af7bbbe2412f9a0174338526daa01fe270500806
Git Branch: master
UTC Build Time: 2020-05-27 12:50:37
GoVersion: go1.13
Race Enabled: false
TiKV Min Version: v3.0.0-60965b006877ca7234adaced7890d7b029ed1306
Check Table Before Drop: false
$ /data1/jenkins/deploy/bin/tikv-server -V
TiKV
Release Version: 4.1.0-alpha
Edition: Community
Git Commit Hash: 970a9bf2a9ea782a455ae579ad237aaf6cb1daec
Git Commit Branch: master
UTC Build Time: 2020-05-27 06:17:35
Rust Version: rustc 1.44.0-nightly (b2e36e6c2 2020-04-22)
Enable Features: jemalloc portable sse protobuf-codec
Profile: dist_release
```
### 5. Root Cause Analysis
<!-- should be filled by the investigator before it's closed -->
## SIG slack channel
[#sig-exec](https://slack.tidb.io/invite?team=tidb-community&channel=sig-exec&ref=high-performance)
## Score
- 300
## Mentor
* @lzmhhh123
|
1.0
|
Error `Unsupported type: Null` occurred when updating the table using a no else CASE. - ## Description
## Bug Report
Please answer these questions before submitting your issue. Thanks!
### 1. Minimal reproduce step (Required)
<!-- a step by step guide for reproducing the bug. -->
```sql
CREATE TABLE `table_int_float_varchar` (
`id_6` int(16) NOT NULL AUTO_INCREMENT,
`col_int_6` int(16) DEFAULT NULL,
`col_float_6` float DEFAULT NULL,
`col_varchar_6` varchar(511) DEFAULT NULL,
PRIMARY KEY (`id_6`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_bin AUTO_INCREMENT=397991;
UPDATE IGNORE table_int_float_varchar SET table_int_float_varchar.col_int_6 = 1 WHERE (CASE WHEN NULL THEN NULL END) is NULL;
```
### 2. What did you expect to see? (Required)
```log
mysql> UPDATE IGNORE table_int_float_varchar SET table_int_float_varchar.col_int_6 = 1 WHERE (CASE WHEN NULL THEN NULL END) is NULL;
Query OK, 0 rows affected (0.00 sec)
Rows matched: 0 Changed: 0 Warnings: 0
```
### 3. What did you see instead (Required)
```log
MySQL [test]> UPDATE IGNORE table_int_float_varchar SET table_int_float_varchar.col_int_6 = 1 WHERE (CASE WHEN NULL THEN NULL END) is NULL;
ERROR 1105 (HY000): other error: [components/tidb_query_vec_executors/src/runner.rs:83]: BatchSelectionExecutor: Evaluate error: [components/tidb_query_vec_expr/src/types/expr_builder.rs:26]: Unsupported type: Null
```
### 4. Affected version (Required)
<!-- v3.0.0, v4.0.0, etc -->
```bash
$ /data1/jenkins/deploy/bin/tidb-server -V
Release Version: v4.0.0-beta.2-517-gaf7bbbe24
Edition: Community
Git Commit Hash: af7bbbe2412f9a0174338526daa01fe270500806
Git Branch: master
UTC Build Time: 2020-05-27 12:50:37
GoVersion: go1.13
Race Enabled: false
TiKV Min Version: v3.0.0-60965b006877ca7234adaced7890d7b029ed1306
Check Table Before Drop: false
$ /data1/jenkins/deploy/bin/tikv-server -V
TiKV
Release Version: 4.1.0-alpha
Edition: Community
Git Commit Hash: 970a9bf2a9ea782a455ae579ad237aaf6cb1daec
Git Commit Branch: master
UTC Build Time: 2020-05-27 06:17:35
Rust Version: rustc 1.44.0-nightly (b2e36e6c2 2020-04-22)
Enable Features: jemalloc portable sse protobuf-codec
Profile: dist_release
```
### 5. Root Cause Analysis
<!-- should be filled by the investigator before it's closed -->
## SIG slack channel
[#sig-exec](https://slack.tidb.io/invite?team=tidb-community&channel=sig-exec&ref=high-performance)
## Score
- 300
## Mentor
* @lzmhhh123
|
process
|
error unsupported type null occurred when updating the table using a no else case description bug report please answer these questions before submitting your issue thanks minimal reproduce step required sql create table table int float varchar id int not null auto increment col int int default null col float float default null col varchar varchar default null primary key id engine innodb default charset collate bin auto increment update ignore table int float varchar set table int float varchar col int where case when null then null end is null what did you expect to see required log mysql update ignore table int float varchar set table int float varchar col int where case when null then null end is null query ok rows affected sec rows matched changed warnings what did you see instead required log mysql update ignore table int float varchar set table int float varchar col int where case when null then null end is null error other error batchselectionexecutor evaluate error unsupported type null affected version required bash jenkins deploy bin tidb server v release version beta edition community git commit hash git branch master utc build time goversion race enabled false tikv min version check table before drop false jenkins deploy bin tikv server v tikv release version alpha edition community git commit hash git commit branch master utc build time rust version rustc nightly enable features jemalloc portable sse protobuf codec profile dist release root cause analysis sig slack channel score mentor
| 1
|
14,120
| 17,016,232,606
|
IssuesEvent
|
2021-07-02 12:27:46
|
damb/scdetect
|
https://api.github.com/repos/damb/scdetect
|
closed
|
Resampling
|
enhancement processing
|
Another result from the last meeting.
Mismatches regarding *sampling frequency* between the template waveform and the data to be matched should be handled as follows:
- Apply an *antialias* filter before resampling.
- EDIT: Apply resampling before filtering.
- If no filters are configured, always resample to the sampling frequency of the data to be matched. This is the simple case. The implementation may be part of the `Template` processor, itself.
- If there is filtering involved, allow the target sampling frequency to be configurable, as well (@ramasuri-CH).
Note, that a [resampling recordstream](https://www.seiscomp.de/doc/apps/global_recordstream.html#rs-resample) implementation is already provided by SeisComP. However, since `scdetect` runs multiple detectors operating on different stream sets where every single stream, part of the stream set, may be again set up using a different filter, relying on a single resampling record stream with a fixed sampling frequency is definitely not sufficient.
The solution should take into account that:
- Filtering is currently part of the `Template` processor and is applied before computing the cross-correlation.
- Multiple `Detector` processors might *share* a stream with a common filter used. If possible, avoid *redundant* resampling.
|
1.0
|
Resampling - Another result from the last meeting.
Mismatches regarding *sampling frequency* between the template waveform and the data to be matched should be handled as follows:
- Apply an *antialias* filter before resampling.
- EDIT: Apply resampling before filtering.
- If no filters are configured, always resample to the sampling frequency of the data to be matched. This is the simple case. The implementation may be part of the `Template` processor, itself.
- If there is filtering involved, allow the target sampling frequency to be configurable, as well (@ramasuri-CH).
Note, that a [resampling recordstream](https://www.seiscomp.de/doc/apps/global_recordstream.html#rs-resample) implementation is already provided by SeisComP. However, since `scdetect` runs multiple detectors operating on different stream sets where every single stream, part of the stream set, may be again set up using a different filter, relying on a single resampling record stream with a fixed sampling frequency is definitely not sufficient.
The solution should take into account that:
- Filtering is currently part of the `Template` processor and is applied before computing the cross-correlation.
- Multiple `Detector` processors might *share* a stream with a common filter used. If possible, avoid *redundant* resampling.
|
process
|
resampling another result from the last meeting mismatches regarding sampling frequency between the template waveform and the data to be matched should be handled as follows apply an antialias filter before resampling edit apply resampling before filtering if no filters are configured always resample to the sampling frequency of the data to be matched this is the simple case the implementation may be part of the template processor itself if there is filtering involved allow the target sampling frequency to be configurable as well ramasuri ch note that a implementation is already provided by seiscomp however since scdetect runs multiple detectors operating on different stream sets where every single stream part of the stream set may be again set up using a different filter relying on a single resampling record stream with a fixed sampling frequency is definitely not sufficient the solution should take into account that filtering is currently part of the template processor and is applied before computing the cross correlation multiple detector processors might share a stream with a common filter used if possible avoid redundant resampling
| 1
|
9,358
| 12,368,738,343
|
IssuesEvent
|
2020-05-18 14:16:07
|
kubeflow/gcp-blueprints
|
https://api.github.com/repos/kubeflow/gcp-blueprints
|
closed
|
Setup autodeploy for GCP blueprints
|
kind/feature kind/process platform/gcp priority/p1
|
We should setup the auto-deploy infrastructure to autodeploy from blueprints.
This way we ensure that our GCP blueprint is up to date and working.
|
1.0
|
Setup autodeploy for GCP blueprints - We should setup the auto-deploy infrastructure to autodeploy from blueprints.
This way we ensure that our GCP blueprint is up to date and working.
|
process
|
setup autodeploy for gcp blueprints we should setup the auto deploy infrastructure to autodeploy from blueprints this way we ensure that our gcp blueprint is up to date and working
| 1
|
10,726
| 27,331,581,611
|
IssuesEvent
|
2023-02-25 17:49:44
|
duckie-team/quack-quack-android
|
https://api.github.com/repos/duckie-team/quack-quack-android
|
opened
|
๊ฝฅ๊ฝฅ ์ปดํฌ๋ํธ Modifier ์์ ์ฑ์ ๊ณ ๋ฏผ
|
question architecture ui-components
|
`๊ฝฅ๊ฝฅ 2.0.0`์์๋ ์ปดํฌ๋ํธ์ ๋์์ธ์ ์ ์ดํ๊ธฐ ์ํด `Modifier`๋ฅผ ์ฌ์ฉํฉ๋๋ค. ์๋ฅผ ๋ค์ด ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
```
QuackText(
modifier = Modifier.highlight(
highlights = listOf("test" to ::toast, "hi" to ::toast),
),
text = "test hi bye",
typography = QuackTypography.Body1,
)
|
1.0
|
๊ฝฅ๊ฝฅ ์ปดํฌ๋ํธ Modifier ์์ ์ฑ์ ๊ณ ๋ฏผ - `๊ฝฅ๊ฝฅ 2.0.0`์์๋ ์ปดํฌ๋ํธ์ ๋์์ธ์ ์ ์ดํ๊ธฐ ์ํด `Modifier`๋ฅผ ์ฌ์ฉํฉ๋๋ค. ์๋ฅผ ๋ค์ด ๋ค์๊ณผ ๊ฐ์ต๋๋ค.
```
QuackText(
modifier = Modifier.highlight(
highlights = listOf("test" to ::toast, "hi" to ::toast),
),
text = "test hi bye",
typography = QuackTypography.Body1,
)
|
non_process
|
๊ฝฅ๊ฝฅ ์ปดํฌ๋ํธ modifier ์์ ์ฑ์ ๊ณ ๋ฏผ ๊ฝฅ๊ฝฅ ์์๋ ์ปดํฌ๋ํธ์ ๋์์ธ์ ์ ์ดํ๊ธฐ ์ํด modifier ๋ฅผ ์ฌ์ฉํฉ๋๋ค ์๋ฅผ ๋ค์ด ๋ค์๊ณผ ๊ฐ์ต๋๋ค quacktext modifier modifier highlight highlights listof test to toast hi to toast text test hi bye typography quacktypography
| 0
|
11,143
| 13,957,692,393
|
IssuesEvent
|
2020-10-24 08:10:41
|
alexanderkotsev/geoportal
|
https://api.github.com/repos/alexanderkotsev/geoportal
|
opened
|
PL-CODGIK: One linked Discovery Service is not responding
|
Geoportal Harvesting process PL - Poland
|
Dear Piotr,
we are unable to fully harvest the polish metadata from our internal systems because it seems that the IP address assigned to:
Geo-System metadata catalogue
http://metadane.podgik.pl/geonetwork/srv/eng/csw
is rated as malicious, possibily because of malevolent activity by the prevoius owner of the IP address or some other cause.
I have requested Symantec to perform a recategorisation:
ATTENTION: The following candidate Linked Discovery Services could not be contacted:
Resource Locator
Error message
http://metadane.podgik.pl/geonetwork/srv/en/csw?
Access to the HTTP resource is forbidden "http://metadane.podgik.pl/geonetwork/srv/en/csw?request=GetCapabilities&service=CSW&version=2.0.2"
http://usluga.zabytek.gov.pl/CSW_NID/Service.svc/get
The locator "http://usluga.zabytek.gov.pl/CSW_NID/Service.svc/get" response could not be interpreted: "java.lang.NullPointerException - java.lang.NullPointerException"
Access Denied
The site: http://metadane.podgik.pl/geonetwork/srv/en/csw is blocked because the European Commission web filter identified it as "Malicious Sources/Malnets"
Best regards,
Angelo
|
1.0
|
PL-CODGIK: One linked Discovery Service is not responding - Dear Piotr,
we are unable to fully harvest the polish metadata from our internal systems because it seems that the IP address assigned to:
Geo-System metadata catalogue
http://metadane.podgik.pl/geonetwork/srv/eng/csw
is rated as malicious, possibily because of malevolent activity by the prevoius owner of the IP address or some other cause.
I have requested Symantec to perform a recategorisation:
ATTENTION: The following candidate Linked Discovery Services could not be contacted:
Resource Locator
Error message
http://metadane.podgik.pl/geonetwork/srv/en/csw?
Access to the HTTP resource is forbidden "http://metadane.podgik.pl/geonetwork/srv/en/csw?request=GetCapabilities&service=CSW&version=2.0.2"
http://usluga.zabytek.gov.pl/CSW_NID/Service.svc/get
The locator "http://usluga.zabytek.gov.pl/CSW_NID/Service.svc/get" response could not be interpreted: "java.lang.NullPointerException - java.lang.NullPointerException"
Access Denied
The site: http://metadane.podgik.pl/geonetwork/srv/en/csw is blocked because the European Commission web filter identified it as "Malicious Sources/Malnets"
Best regards,
Angelo
|
process
|
pl codgik one linked discovery service is not responding dear piotr we are unable to fully harvest the polish metadata from our internal systems because it seems that the ip address assigned to geo system metadata catalogue is rated as malicious possibily because of malevolent activity by the prevoius owner of the ip address or some other cause i have requested symantec to perform a recategorisation attention the following candidate linked discovery services could not be contacted resource locator error message access to the http resource is forbidden quot the locator quot response could not be interpreted quot java lang nullpointerexception java lang nullpointerexception quot access denied the site is blocked because the european commission web filter identified it as quot malicious sources malnets quot best regards angelo
| 1
|
138,573
| 12,823,412,874
|
IssuesEvent
|
2020-07-06 11:40:46
|
astrojarred/grbsens
|
https://api.github.com/repos/astrojarred/grbsens
|
opened
|
Update documentation
|
documentation
|
In the documentation, include:
- installation instructions
- overview of simulation chain and outputs
- use cases
- user functions, their input parameters and outputs
|
1.0
|
Update documentation - In the documentation, include:
- installation instructions
- overview of simulation chain and outputs
- use cases
- user functions, their input parameters and outputs
|
non_process
|
update documentation in the documentation include installation instructions overview of simulation chain and outputs use cases user functions their input parameters and outputs
| 0
|
20,170
| 26,727,653,680
|
IssuesEvent
|
2023-01-29 22:26:22
|
evidence-dev/evidence
|
https://api.github.com/repos/evidence-dev/evidence
|
opened
|
Formatter
|
enhancement dev-process
|
* Config prettier, or similar, ideally on the entire project, but the priority is the development workspace to start
* Should include some automated enforcement mechanism: post commit, on save or similar.
* PR should include a run of the formatter
|
1.0
|
Formatter - * Config prettier, or similar, ideally on the entire project, but the priority is the development workspace to start
* Should include some automated enforcement mechanism: post commit, on save or similar.
* PR should include a run of the formatter
|
process
|
formatter config prettier or similar ideally on the entire project but the priority is the development workspace to start should include some automated enforcement mechanism post commit on save or similar pr should include a run of the formatter
| 1
|
431,427
| 30,232,907,475
|
IssuesEvent
|
2023-07-06 08:15:46
|
ManishBisht777/frontend-freaks-website
|
https://api.github.com/repos/ManishBisht777/frontend-freaks-website
|
closed
|
[DOCS] Content - Javascript
|
documentation good first issue
|
### Description
Add content to js page
### Screenshots
_No response_
### Additional information
_No response_
|
1.0
|
[DOCS] Content - Javascript - ### Description
Add content to js page
### Screenshots
_No response_
### Additional information
_No response_
|
non_process
|
content javascript description add content to js page screenshots no response additional information no response
| 0
|
1,887
| 4,712,637,055
|
IssuesEvent
|
2016-10-14 17:25:20
|
opentrials/opentrials
|
https://api.github.com/repos/opentrials/opentrials
|
opened
|
Add publishing date to cochrane reviews
|
API Collectors Explorer Processors
|
According to the research done by @jessflem, we don't have it available in the .rm5 files so we can search the review by DOI ID on pubmed website or on [crossref](http://search.crossref.org/) and get it from there.
|
1.0
|
Add publishing date to cochrane reviews - According to the research done by @jessflem, we don't have it available in the .rm5 files so we can search the review by DOI ID on pubmed website or on [crossref](http://search.crossref.org/) and get it from there.
|
process
|
add publishing date to cochrane reviews according to the research done by jessflem we don t have it available in the files so we can search the review by doi id on pubmed website or on and get it from there
| 1
|
18,618
| 24,579,398,465
|
IssuesEvent
|
2022-10-13 14:35:25
|
GoogleCloudPlatform/fda-mystudies
|
https://api.github.com/repos/GoogleCloudPlatform/fda-mystudies
|
closed
|
[Consent API] [Android] Participants should be able to view and download the data-sharing consent screenshot, in the mobile app
|
Bug P0 Android Process: Fixed Process: Tested QA Process: Tested dev
|
**Steps:**
1. Install the mobile app
2. Sign in / Sign up
3. Enroll to the study
4. Navigate to 'Study Resources' screen and Verify
**AR:** Participants are not able to view and download the data-sharing consent screenshot, if applicable, from the Study Resources screen
**ER:** Participants should be able to view and download the data-sharing consent screenshot, if applicable, from the Study Resources screen
|
3.0
|
[Consent API] [Android] Participants should be able to view and download the data-sharing consent screenshot, in the mobile app - **Steps:**
1. Install the mobile app
2. Sign in / Sign up
3. Enroll to the study
4. Navigate to 'Study Resources' screen and Verify
**AR:** Participants are not able to view and download the data-sharing consent screenshot, if applicable, from the Study Resources screen
**ER:** Participants should be able to view and download the data-sharing consent screenshot, if applicable, from the Study Resources screen
|
process
|
participants should be able to view and download the data sharing consent screenshot in the mobile app steps install the mobile app sign in sign up enroll to the study navigate to study resources screen and verify ar participants are not able to view and download the data sharing consent screenshot if applicable from the study resources screen er participants should be able to view and download the data sharing consent screenshot if applicable from the study resources screen
| 1
|
13,577
| 16,111,866,545
|
IssuesEvent
|
2021-04-27 22:42:56
|
googleapis/gapic-showcase
|
https://api.github.com/repos/googleapis/gapic-showcase
|
opened
|
GitHub action for release only captures first line of the release notes in CHANGELOG.md
|
process
|
I noticed this when pushing the v0.14.0 release, which only grabbed the first line of the notes for that release from `CHANGELOG.md`. I've since manually corrected the release notes for that one release, but we should figure out how to fix the process.
|
1.0
|
GitHub action for release only captures first line of the release notes in CHANGELOG.md - I noticed this when pushing the v0.14.0 release, which only grabbed the first line of the notes for that release from `CHANGELOG.md`. I've since manually corrected the release notes for that one release, but we should figure out how to fix the process.
|
process
|
github action for release only captures first line of the release notes in changelog md i noticed this when pushing the release which only grabbed the first line of the notes for that release from changelog md i ve since manually corrected the release notes for that one release but we should figure out how to fix the process
| 1
|
14,162
| 17,084,782,420
|
IssuesEvent
|
2021-07-08 10:20:53
|
GoogleCloudPlatform/fda-mystudies
|
https://api.github.com/repos/GoogleCloudPlatform/fda-mystudies
|
closed
|
[PM] Responsive issues in Admins
|
Bug P2 Participant manager Process: Fixed Process: Tested QA Process: Tested dev
|
Responsive issues in Users
1. Admins > Edit admins details > Deactivate /Active admin Ui issue


2. Admins > Admin details page > UI issues > Values are wrapping up with the margins

3. Manage admins page > Table UI issue and contents are wrapping with the margins

|
3.0
|
[PM] Responsive issues in Admins - Responsive issues in Users
1. Admins > Edit admins details > Deactivate /Active admin Ui issue


2. Admins > Admin details page > UI issues > Values are wrapping up with the margins

3. Manage admins page > Table UI issue and contents are wrapping with the margins

|
process
|
responsive issues in admins responsive issues in users admins edit admins details deactivate active admin ui issue admins admin details page ui issues values are wrapping up with the margins manage admins page table ui issue and contents are wrapping with the margins
| 1
|
2,994
| 12,960,813,432
|
IssuesEvent
|
2020-07-20 14:51:25
|
MicrosoftDocs/azure-docs
|
https://api.github.com/repos/MicrosoftDocs/azure-docs
|
closed
|
Asset Definition
|
Pri2 assigned-to-author automation/svc doc-enhancement shared-capabilities/subsvc triaged
|
Hello,
My feedback is that you should include a definition of assets in the section of Data Retention.
Many Thanks
---
#### Document Details
โ *Do not edit this section. It is required for docs.microsoft.com โ GitHub issue linking.*
* ID: 372f4102-fb76-8708-580d-28d8121e780e
* Version Independent ID: 6f1fb46e-f233-cbe2-7e4e-2b267c66e99c
* Content: [Azure Automation data security](https://docs.microsoft.com/en-us/azure/automation/automation-managing-data#data-retention)
* Content Source: [articles/automation/automation-managing-data.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/automation/automation-managing-data.md)
* Service: **automation**
* Sub-service: **shared-capabilities**
* GitHub Login: @MGoedtel
* Microsoft Alias: **magoedte**
|
1.0
|
Asset Definition -
Hello,
My feedback is that you should include a definition of assets in the section of Data Retention.
Many Thanks
---
#### Document Details
โ *Do not edit this section. It is required for docs.microsoft.com โ GitHub issue linking.*
* ID: 372f4102-fb76-8708-580d-28d8121e780e
* Version Independent ID: 6f1fb46e-f233-cbe2-7e4e-2b267c66e99c
* Content: [Azure Automation data security](https://docs.microsoft.com/en-us/azure/automation/automation-managing-data#data-retention)
* Content Source: [articles/automation/automation-managing-data.md](https://github.com/MicrosoftDocs/azure-docs/blob/master/articles/automation/automation-managing-data.md)
* Service: **automation**
* Sub-service: **shared-capabilities**
* GitHub Login: @MGoedtel
* Microsoft Alias: **magoedte**
|
non_process
|
asset definition hello my feedback is that you should include a definition of assets in the section of data retention many thanks document details โ do not edit this section it is required for docs microsoft com โ github issue linking id version independent id content content source service automation sub service shared capabilities github login mgoedtel microsoft alias magoedte
| 0
|
118,457
| 25,312,377,153
|
IssuesEvent
|
2022-11-17 18:31:13
|
sourcegraph/sourcegraph
|
https://api.github.com/repos/sourcegraph/sourcegraph
|
closed
|
New hierarchical symbols sidebar show hierarchy visually but not through markup to screenreaders
|
accessibility wcag/2.1/fixing wcag/2.1 team/code-exploration
|
The new hierarchical symbols achieve a tree by using increasing padding, but are still marked up as a list (`<ul>`/`<li>`). A screen reader user has no way to know the hierarchy.
This is a regression to before because previously, the container name of each symbol was available after the symbol name. Now however, it is only available in the list as a list item, with the fact of it being a container for the following items only communicated visually.
/cc @felixfbecker
|
1.0
|
New hierarchical symbols sidebar show hierarchy visually but not through markup to screenreaders - The new hierarchical symbols achieve a tree by using increasing padding, but are still marked up as a list (`<ul>`/`<li>`). A screen reader user has no way to know the hierarchy.
This is a regression to before because previously, the container name of each symbol was available after the symbol name. Now however, it is only available in the list as a list item, with the fact of it being a container for the following items only communicated visually.
/cc @felixfbecker
|
non_process
|
new hierarchical symbols sidebar show hierarchy visually but not through markup to screenreaders the new hierarchical symbols achieve a tree by using increasing padding but are still marked up as a list a screen reader user has no way to know the hierarchy this is a regression to before because previously the container name of each symbol was available after the symbol name now however it is only available in the list as a list item with the fact of it being a container for the following items only communicated visually cc felixfbecker
| 0
|
5,348
| 8,179,164,296
|
IssuesEvent
|
2018-08-28 15:42:13
|
GoogleCloudPlatform/google-cloud-python
|
https://api.github.com/repos/GoogleCloudPlatform/google-cloud-python
|
closed
|
Create a new release of the Bigtable library
|
api: bigtable packaging type: process
|
As of 7 Aug 2018, the [latest version of the Bigtable library on PyPi](https://pypi.org/project/google-cloud-bigtable/) is 0.29.0 from 28 Feb 2018. Would it be possible to release a new version (and release new ones regularly) to pick up the latest updates and ongoing feature additions, please?
Thank you!
/cc: @sduskis, @ghaisa
|
1.0
|
Create a new release of the Bigtable library - As of 7 Aug 2018, the [latest version of the Bigtable library on PyPi](https://pypi.org/project/google-cloud-bigtable/) is 0.29.0 from 28 Feb 2018. Would it be possible to release a new version (and release new ones regularly) to pick up the latest updates and ongoing feature additions, please?
Thank you!
/cc: @sduskis, @ghaisa
|
process
|
create a new release of the bigtable library as of aug the is from feb would it be possible to release a new version and release new ones regularly to pick up the latest updates and ongoing feature additions please thank you cc sduskis ghaisa
| 1
|
74,253
| 14,225,208,010
|
IssuesEvent
|
2020-11-17 20:52:51
|
Flash0ver/F0.Analyzers
|
https://api.github.com/repos/Flash0ver/F0.Analyzers
|
closed
|
Assign accessible members from inherited base type in Object Initializers
|
codeanalysis-coderefactorings enhancement
|
Currently, only settable members of the object creation expression's type are assigned in the created Object Initializer.
Also include visible [fields](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/fields) and [properties](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/properties) of base classes.
But ignore [hidden](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/new-modifier) properties, [abstract](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/abstract) properties, and take only the [overridden](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/override) version of [virtual](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/virtual) properties.
Scan all base classes until [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object).
Avoid that for [value types](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/value-types).
|
2.0
|
Assign accessible members from inherited base type in Object Initializers - Currently, only settable members of the object creation expression's type are assigned in the created Object Initializer.
Also include visible [fields](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/fields) and [properties](https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/properties) of base classes.
But ignore [hidden](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/new-modifier) properties, [abstract](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/abstract) properties, and take only the [overridden](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/override) version of [virtual](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/virtual) properties.
Scan all base classes until [Object](https://docs.microsoft.com/en-us/dotnet/api/system.object).
Avoid that for [value types](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/builtin-types/value-types).
|
non_process
|
assign accessible members from inherited base type in object initializers currently only settable members of the object creation expression s type are assigned in the created object initializer also include visible and of base classes but ignore properties properties and take only the version of properties scan all base classes until avoid that for
| 0
|
63,310
| 7,714,643,188
|
IssuesEvent
|
2018-05-23 03:19:22
|
typeorm/typeorm
|
https://api.github.com/repos/typeorm/typeorm
|
closed
|
Throwing error when trying to insert a row with an existing id
|
by design question
|
**Issue type:**
[ ] question
[ ] bug report
[ x ] feature request
[ ] documentation issue
**Database system/driver:**
All?
**TypeORM version:**
[ x ] `latest`
[ ] `@next`
[ ] `0.x.x` (or put your version here)
**Steps to reproduce or a small repository showing the problem:**
*The following is a discussion to continue this issue: https://github.com/typeorm/typeorm/issues/691*
I first thought that the save method was throwing if the ID already existed but as pointed out by @kavinvin it does not.
I do not think that it is a "too specific requirement", I think that it's pretty important actually.
As the operations are asynchronous (promised based), if you do something like:
```
async register(user: User) {
const userAlreadyExists = await this.findOneById(user.id);
if (!userAlreadyExists) {
const newUser = await this.userRepository.save(user);
}
// ...
}
```
What guarantee do you have that a user with the same ID will not be added right after the first await and right before the check? Then what? You just override him?
It should be a security coming form the database itself IMO.
|
1.0
|
Throwing error when trying to insert a row with an existing id - **Issue type:**
[ ] question
[ ] bug report
[ x ] feature request
[ ] documentation issue
**Database system/driver:**
All?
**TypeORM version:**
[ x ] `latest`
[ ] `@next`
[ ] `0.x.x` (or put your version here)
**Steps to reproduce or a small repository showing the problem:**
*The following is a discussion to continue this issue: https://github.com/typeorm/typeorm/issues/691*
I first thought that the save method was throwing if the ID already existed but as pointed out by @kavinvin it does not.
I do not think that it is a "too specific requirement", I think that it's pretty important actually.
As the operations are asynchronous (promised based), if you do something like:
```
async register(user: User) {
const userAlreadyExists = await this.findOneById(user.id);
if (!userAlreadyExists) {
const newUser = await this.userRepository.save(user);
}
// ...
}
```
What guarantee do you have that a user with the same ID will not be added right after the first await and right before the check? Then what? You just override him?
It should be a security coming form the database itself IMO.
|
non_process
|
throwing error when trying to insert a row with an existing id issue type question bug report feature request documentation issue database system driver all typeorm version latest next x x or put your version here steps to reproduce or a small repository showing the problem the following is a discussion to continue this issue i first thought that the save method was throwing if the id already existed but as pointed out by kavinvin it does not i do not think that it is a too specific requirement i think that it s pretty important actually as the operations are asynchronous promised based if you do something like async register user user const useralreadyexists await this findonebyid user id if useralreadyexists const newuser await this userrepository save user what guarantee do you have that a user with the same id will not be added right after the first await and right before the check then what you just override him it should be a security coming form the database itself imo
| 0
|
8,383
| 11,543,957,655
|
IssuesEvent
|
2020-02-18 10:32:37
|
prisma/prisma-client-js
|
https://api.github.com/repos/prisma/prisma-client-js
|
closed
|
Get rid of `hasha` and use `--version` instead
|
kind/improvement process/candidate
|
In order to compare binaries when copying them into the runtime folder, we right now first use the file size, then we compare them by md5 hash using the `hasha` libray. However, our binaries expose a `--version` command, which is much faster to execute, so we should switch to that.
|
1.0
|
Get rid of `hasha` and use `--version` instead - In order to compare binaries when copying them into the runtime folder, we right now first use the file size, then we compare them by md5 hash using the `hasha` libray. However, our binaries expose a `--version` command, which is much faster to execute, so we should switch to that.
|
process
|
get rid of hasha and use version instead in order to compare binaries when copying them into the runtime folder we right now first use the file size then we compare them by hash using the hasha libray however our binaries expose a version command which is much faster to execute so we should switch to that
| 1
|
88,521
| 10,573,639,972
|
IssuesEvent
|
2019-10-07 12:27:50
|
fga-eps-mds/2019.2-Amika-Wiki
|
https://api.github.com/repos/fga-eps-mds/2019.2-Amika-Wiki
|
closed
|
[DOC31] Documentar Roadmap de Deploy
|
DevOps documentation
|
**Sua funcionalidade requisitada รฉ relacionada com um problema? Descreva, por favor.**
Roadmap por sprint contando com as atividades a serem desenvolvidas pelo Devops.
**Descreva a soluรงรฃo que vocรช gostaria**
Criar arquivo com a linha do tempo das atividades do Devops ao longo das sprints.
**Descreva uma alternativa considerada**
<!-- Descreva de forma clara e concisa qualquer soluรงรฃo alternativa ou alguma funcionalidade considerada. -->
**Informaรงรตes adicionais**
<!-- Comente outra informaรงรฃo relevante sobre o sua funcionalidade requisitada aqui. -->
**Checklist**
- [x] A issue possui nome significativo.
- [x] A issue possui descriรงรฃo significativa.
- [ ] A issue possui screenshots quando necessรกrias.
- [x] A issue possui labels.
|
1.0
|
[DOC31] Documentar Roadmap de Deploy - **Sua funcionalidade requisitada รฉ relacionada com um problema? Descreva, por favor.**
Roadmap por sprint contando com as atividades a serem desenvolvidas pelo Devops.
**Descreva a soluรงรฃo que vocรช gostaria**
Criar arquivo com a linha do tempo das atividades do Devops ao longo das sprints.
**Descreva uma alternativa considerada**
<!-- Descreva de forma clara e concisa qualquer soluรงรฃo alternativa ou alguma funcionalidade considerada. -->
**Informaรงรตes adicionais**
<!-- Comente outra informaรงรฃo relevante sobre o sua funcionalidade requisitada aqui. -->
**Checklist**
- [x] A issue possui nome significativo.
- [x] A issue possui descriรงรฃo significativa.
- [ ] A issue possui screenshots quando necessรกrias.
- [x] A issue possui labels.
|
non_process
|
documentar roadmap de deploy sua funcionalidade requisitada รฉ relacionada com um problema descreva por favor roadmap por sprint contando com as atividades a serem desenvolvidas pelo devops descreva a soluรงรฃo que vocรช gostaria criar arquivo com a linha do tempo das atividades do devops ao longo das sprints descreva uma alternativa considerada informaรงรตes adicionais checklist a issue possui nome significativo a issue possui descriรงรฃo significativa a issue possui screenshots quando necessรกrias a issue possui labels
| 0
|
11,626
| 5,052,102,961
|
IssuesEvent
|
2016-12-21 00:27:28
|
mozilla-mobile/prox
|
https://api.github.com/repos/mozilla-mobile/prox
|
closed
|
mpopova@mozilla.com on build #553: Half of the places are quite far from my location and don'tโฆ
|
1.0 buddybuild-feedback
|
Feedback from mpopova@mozilla.com : Half of the places are quite far from my location and don't show walking/driving time
<img src="https://s3-us-west-2.amazonaws.com/buddybuild-screenshots/57f51f8bcaa70a01005412ee/583f131861760e010096484f/90327358-3a26-4b5d-8ef6-1a050459a232.jpg" width="33%" height="33%" /><table><tr><td>Created</td><td>Wed Nov 30 2016 18:23:28 GMT+0000 (UTC)</td></tr><tr><td>CFBundleShortVersion</td><td>1.0</td></tr><tr><td>CFBundleVersion</td><td>1</td></tr><tr><td>App uptime</td><td>97.12114</td></tr><tr><td>Build</td><td>553</td></tr><tr><td>Device type</td><td>iPhone 6s</td></tr><tr><td>Device name</td><td>Maria's iPhone</td></tr><tr><td>Screen size</td><td>375</td></tr><tr><td>Screen size</td><td>375px by 667px</td></tr><tr><td>Battery</td><td>97% Charging</td></tr><tr><td>Memory free</td><td>32 MB / 1777 MB</td></tr><tr><td>Disk free</td><td>941 MB / 11548 MB</td></tr><tr><td>Network IP</td><td>10.131.48.52</td></tr></table>
[Link to buddybuild feedback from build 553](https://dashboard.buddybuild.com/apps/57f51f8bcaa70a01005412ee/feedback?fid=583f19208cac09010038fe2c&bnum=553)
|
1.0
|
mpopova@mozilla.com on build #553: Half of the places are quite far from my location and don'tโฆ - Feedback from mpopova@mozilla.com : Half of the places are quite far from my location and don't show walking/driving time
<img src="https://s3-us-west-2.amazonaws.com/buddybuild-screenshots/57f51f8bcaa70a01005412ee/583f131861760e010096484f/90327358-3a26-4b5d-8ef6-1a050459a232.jpg" width="33%" height="33%" /><table><tr><td>Created</td><td>Wed Nov 30 2016 18:23:28 GMT+0000 (UTC)</td></tr><tr><td>CFBundleShortVersion</td><td>1.0</td></tr><tr><td>CFBundleVersion</td><td>1</td></tr><tr><td>App uptime</td><td>97.12114</td></tr><tr><td>Build</td><td>553</td></tr><tr><td>Device type</td><td>iPhone 6s</td></tr><tr><td>Device name</td><td>Maria's iPhone</td></tr><tr><td>Screen size</td><td>375</td></tr><tr><td>Screen size</td><td>375px by 667px</td></tr><tr><td>Battery</td><td>97% Charging</td></tr><tr><td>Memory free</td><td>32 MB / 1777 MB</td></tr><tr><td>Disk free</td><td>941 MB / 11548 MB</td></tr><tr><td>Network IP</td><td>10.131.48.52</td></tr></table>
[Link to buddybuild feedback from build 553](https://dashboard.buddybuild.com/apps/57f51f8bcaa70a01005412ee/feedback?fid=583f19208cac09010038fe2c&bnum=553)
|
non_process
|
mpopova mozilla com on build half of the places are quite far from my location and don tโฆ feedback from mpopova mozilla com half of the places are quite far from my location and don t show walking driving time created wed nov gmt utc cfbundleshortversion cfbundleversion app uptime build device type iphone device name maria s iphone screen size screen size by battery charging memory free mb mb disk free mb mb network ip
| 0
|
15,504
| 19,703,264,477
|
IssuesEvent
|
2022-01-12 18:52:09
|
googleapis/java-apigee-connect
|
https://api.github.com/repos/googleapis/java-apigee-connect
|
opened
|
Your .repo-metadata.json file has a problem ๐ค
|
type: process repo-metadata: lint
|
You have a problem with your .repo-metadata.json file:
Result of scan ๐:
* release_level must be equal to one of the allowed values in .repo-metadata.json
* api_shortname 'apigee-connect' invalid in .repo-metadata.json
โ๏ธ Once you correct these problems, you can close this issue.
Reach out to **go/github-automation** if you have any questions.
|
1.0
|
Your .repo-metadata.json file has a problem ๐ค - You have a problem with your .repo-metadata.json file:
Result of scan ๐:
* release_level must be equal to one of the allowed values in .repo-metadata.json
* api_shortname 'apigee-connect' invalid in .repo-metadata.json
โ๏ธ Once you correct these problems, you can close this issue.
Reach out to **go/github-automation** if you have any questions.
|
process
|
your repo metadata json file has a problem ๐ค you have a problem with your repo metadata json file result of scan ๐ release level must be equal to one of the allowed values in repo metadata json api shortname apigee connect invalid in repo metadata json โ๏ธ once you correct these problems you can close this issue reach out to go github automation if you have any questions
| 1
|
694,273
| 23,808,810,038
|
IssuesEvent
|
2022-09-04 12:58:07
|
thoth-station/core
|
https://api.github.com/repos/thoth-station/core
|
reopened
|
Provide SLA and license for the cloud based resolver community
|
kind/feature priority/important-soon lifecycle/rotten triage/accepted
|
**Is your feature request related to a problem? Please describe.**
As a user of Thoth, I would like to see what is SLA and what I can expect+what is expected by me when using Thoth's cloud resolver.
**Describe the solution you'd like**
- [ ] sync on legal things of this effort
- [ ] provide a services description for all our endpoints
- [ ] provide an SLA document that is approved
- [ ] have SLA document available to Thoth community
- [ ] license information for consumers
|
1.0
|
Provide SLA and license for the cloud based resolver community - **Is your feature request related to a problem? Please describe.**
As a user of Thoth, I would like to see what is SLA and what I can expect+what is expected by me when using Thoth's cloud resolver.
**Describe the solution you'd like**
- [ ] sync on legal things of this effort
- [ ] provide a services description for all our endpoints
- [ ] provide an SLA document that is approved
- [ ] have SLA document available to Thoth community
- [ ] license information for consumers
|
non_process
|
provide sla and license for the cloud based resolver community is your feature request related to a problem please describe as a user of thoth i would like to see what is sla and what i can expect what is expected by me when using thoth s cloud resolver describe the solution you d like sync on legal things of this effort provide a services description for all our endpoints provide an sla document that is approved have sla document available to thoth community license information for consumers
| 0
|
10,545
| 13,326,982,568
|
IssuesEvent
|
2020-08-27 12:30:57
|
tikv/tikv
|
https://api.github.com/repos/tikv/tikv
|
closed
|
Selection executor does not handle start_scan or stop_scan correctly
|
difficulty/easy severity/Minor sig/coprocessor status/help-wanted type/bug
|
## Bug Report
As title describes.
By default, `stop_scan` will return `None` and we explicitly implemented these interface for Table Scan and Index Scan. However we may have the following scenario: selection + table_scan. Then it will break.
Also it can be seen that the best solution is to inherit start_scan and stop_scan from child executors by default (currently our behaviour is override with None).
|
1.0
|
Selection executor does not handle start_scan or stop_scan correctly - ## Bug Report
As title describes.
By default, `stop_scan` will return `None` and we explicitly implemented these interface for Table Scan and Index Scan. However we may have the following scenario: selection + table_scan. Then it will break.
Also it can be seen that the best solution is to inherit start_scan and stop_scan from child executors by default (currently our behaviour is override with None).
|
process
|
selection executor does not handle start scan or stop scan correctly bug report as title describes by default stop scan will return none and we explicitly implemented these interface for table scan and index scan however we may have the following scenario selection table scan then it will break also it can be seen that the best solution is to inherit start scan and stop scan from child executors by default currently our behaviour is override with none
| 1
|
17,926
| 23,917,841,804
|
IssuesEvent
|
2022-09-09 14:11:59
|
GoogleCloudPlatform/fda-mystudies
|
https://api.github.com/repos/GoogleCloudPlatform/fda-mystudies
|
closed
|
Pod is blocking scale down because it has local storage
|
Bug Deployment Process: Fixed Process: Tested dev
|
A scaled own event is emitted when cluster autoscaler scales the cluster down. This event contains information about which nodes are being removed, and which Pods have to be evicted.
The scaledown event failed because some of the Pods could not be evicted from a node, to over come this issues.
add a **"cluster-autoscaler.kubernetes.io/safe-to-evict": "true"** annotation to the all Pods (**tf-deployment.yaml**) After applying the annotation, cluster autoscaler scales down the cluster correctly.
|
2.0
|
Pod is blocking scale down because it has local storage - A scaled own event is emitted when cluster autoscaler scales the cluster down. This event contains information about which nodes are being removed, and which Pods have to be evicted.
The scaledown event failed because some of the Pods could not be evicted from a node, to over come this issues.
add a **"cluster-autoscaler.kubernetes.io/safe-to-evict": "true"** annotation to the all Pods (**tf-deployment.yaml**) After applying the annotation, cluster autoscaler scales down the cluster correctly.
|
process
|
pod is blocking scale down because it has local storage a scaled own event is emitted when cluster autoscaler scales the cluster down this event contains information about which nodes are being removed and which pods have to be evicted the scaledown event failed because some of the pods could not be evicted from a node to over come this issues add a cluster autoscaler kubernetes io safe to evict true annotation to the all pods tf deployment yaml after applying the annotation cluster autoscaler scales down the cluster correctly
| 1
|
243,243
| 18,679,650,588
|
IssuesEvent
|
2021-11-01 02:43:22
|
AY2122S1-CS2103T-W08-1/tp
|
https://api.github.com/repos/AY2122S1-CS2103T-W08-1/tp
|
closed
|
[PE-D] Inconsistent headers in user guide
|
documentation
|
Not a bug but documentation is very inconsistent with header levels and including/not including the command syntax in the header.

<!--session: 1635497012025-d36e9c72-12ca-4cd4-943d-0ba64ae9711a-->
<!--Version: Web v3.4.1-->
-------------
Labels: `severity.Low` `type.DocumentationBug`
original: Yttruire/ped#5
|
1.0
|
[PE-D] Inconsistent headers in user guide - Not a bug but documentation is very inconsistent with header levels and including/not including the command syntax in the header.

<!--session: 1635497012025-d36e9c72-12ca-4cd4-943d-0ba64ae9711a-->
<!--Version: Web v3.4.1-->
-------------
Labels: `severity.Low` `type.DocumentationBug`
original: Yttruire/ped#5
|
non_process
|
inconsistent headers in user guide not a bug but documentation is very inconsistent with header levels and including not including the command syntax in the header labels severity low type documentationbug original yttruire ped
| 0
|
157,132
| 12,360,123,211
|
IssuesEvent
|
2020-05-17 14:00:59
|
MeridiusIX/RivalAI
|
https://api.github.com/repos/MeridiusIX/RivalAI
|
closed
|
CRITICAL: Refactor Targeting System Code
|
Built Complete Tested Uploaded
|
Create a separate system that tracks grids in the world using an event based system that behaviors can easily query details from. Run it before all Targeting checks
|
1.0
|
CRITICAL: Refactor Targeting System Code - Create a separate system that tracks grids in the world using an event based system that behaviors can easily query details from. Run it before all Targeting checks
|
non_process
|
critical refactor targeting system code create a separate system that tracks grids in the world using an event based system that behaviors can easily query details from run it before all targeting checks
| 0
|
286,470
| 21,577,141,109
|
IssuesEvent
|
2022-05-02 14:49:15
|
paketo-buildpacks/paketo-website
|
https://api.github.com/repos/paketo-buildpacks/paketo-website
|
opened
|
Document BP_LOG_LEVEL=debug
|
documentation
|
## Problem
<!-- What's wrong? Explain what confused you, was inaccurate, or otherwise didn't meet your expectations -->
[RFC 0027,](https://github.com/paketo-buildpacks/rfcs/blob/main/text/0027-log-levels.md) Common Logging Levels for Buildpacks, has been accepted and has begun to be implemented. As this configuration is added to buildpacks, it should be documented.
### Affected page(s)
<!-- Where did you encounter the problem -->
- https://paketo.io/docs/howto/configuration/
- How to and reference pages for buildpacks that support this env var
### Checklist
- [ ] I have included links to page(s) that need to be changed
|
1.0
|
Document BP_LOG_LEVEL=debug - ## Problem
<!-- What's wrong? Explain what confused you, was inaccurate, or otherwise didn't meet your expectations -->
[RFC 0027,](https://github.com/paketo-buildpacks/rfcs/blob/main/text/0027-log-levels.md) Common Logging Levels for Buildpacks, has been accepted and has begun to be implemented. As this configuration is added to buildpacks, it should be documented.
### Affected page(s)
<!-- Where did you encounter the problem -->
- https://paketo.io/docs/howto/configuration/
- How to and reference pages for buildpacks that support this env var
### Checklist
- [ ] I have included links to page(s) that need to be changed
|
non_process
|
document bp log level debug problem common logging levels for buildpacks has been accepted and has begun to be implemented as this configuration is added to buildpacks it should be documented affected page s how to and reference pages for buildpacks that support this env var checklist i have included links to page s that need to be changed
| 0
|
79,298
| 15,586,124,688
|
IssuesEvent
|
2021-03-18 01:13:42
|
mgh3326/freelec-springboot2-webservice_practice
|
https://api.github.com/repos/mgh3326/freelec-springboot2-webservice_practice
|
closed
|
CVE-2020-11620 (High) detected in jackson-databind-2.9.9.3.jar - autoclosed
|
security vulnerability
|
## CVE-2020-11620 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.9.9.3.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: /tmp/ws-scm/freelec-springboot2-webservice_practice/build.gradle</p>
<p>Path to vulnerable library: /root/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.9.9.3/68ddd453458765757fd3ffca9437f9a42d91003e/jackson-databind-2.9.9.3.jar,/root/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.9.9.3/68ddd453458765757fd3ffca9437f9a42d91003e/jackson-databind-2.9.9.3.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-web-2.1.9.RELEASE.jar (Root Library)
- spring-boot-starter-json-2.1.9.RELEASE.jar
- jackson-module-parameter-names-2.9.9.jar
- :x: **jackson-databind-2.9.9.3.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/mgh3326/freelec-springboot2-webservice_practice/commit/c606c1364f2a52178036f670ec43188bdbaf7830">c606c1364f2a52178036f670ec43188bdbaf7830</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to org.apache.commons.jelly.impl.Embedded (aka commons-jelly).
<p>Publish Date: 2020-04-07
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11620>CVE-2020-11620</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11620">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11620</a></p>
<p>Release Date: 2020-04-07</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.4</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2020-11620 (High) detected in jackson-databind-2.9.9.3.jar - autoclosed - ## CVE-2020-11620 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jackson-databind-2.9.9.3.jar</b></p></summary>
<p>General data-binding functionality for Jackson: works on core streaming API</p>
<p>Library home page: <a href="http://github.com/FasterXML/jackson">http://github.com/FasterXML/jackson</a></p>
<p>Path to dependency file: /tmp/ws-scm/freelec-springboot2-webservice_practice/build.gradle</p>
<p>Path to vulnerable library: /root/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.9.9.3/68ddd453458765757fd3ffca9437f9a42d91003e/jackson-databind-2.9.9.3.jar,/root/.gradle/caches/modules-2/files-2.1/com.fasterxml.jackson.core/jackson-databind/2.9.9.3/68ddd453458765757fd3ffca9437f9a42d91003e/jackson-databind-2.9.9.3.jar</p>
<p>
Dependency Hierarchy:
- spring-boot-starter-web-2.1.9.RELEASE.jar (Root Library)
- spring-boot-starter-json-2.1.9.RELEASE.jar
- jackson-module-parameter-names-2.9.9.jar
- :x: **jackson-databind-2.9.9.3.jar** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/mgh3326/freelec-springboot2-webservice_practice/commit/c606c1364f2a52178036f670ec43188bdbaf7830">c606c1364f2a52178036f670ec43188bdbaf7830</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
FasterXML jackson-databind 2.x before 2.9.10.4 mishandles the interaction between serialization gadgets and typing, related to org.apache.commons.jelly.impl.Embedded (aka commons-jelly).
<p>Publish Date: 2020-04-07
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11620>CVE-2020-11620</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11620">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-11620</a></p>
<p>Release Date: 2020-04-07</p>
<p>Fix Resolution: com.fasterxml.jackson.core:jackson-databind:2.9.10.4</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_process
|
cve high detected in jackson databind jar autoclosed cve high severity vulnerability vulnerable library jackson databind jar general data binding functionality for jackson works on core streaming api library home page a href path to dependency file tmp ws scm freelec webservice practice build gradle path to vulnerable library root gradle caches modules files com fasterxml jackson core jackson databind jackson databind jar root gradle caches modules files com fasterxml jackson core jackson databind jackson databind jar dependency hierarchy spring boot starter web release jar root library spring boot starter json release jar jackson module parameter names jar x jackson databind jar vulnerable library found in head commit a href vulnerability details fasterxml jackson databind x before mishandles the interaction between serialization gadgets and typing related to org apache commons jelly impl embedded aka commons jelly publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution com fasterxml jackson core jackson databind step up your open source security game with whitesource
| 0
|
20,153
| 26,702,909,376
|
IssuesEvent
|
2023-01-27 15:44:30
|
bazelbuild/bazel-skylib
|
https://api.github.com/repos/bazelbuild/bazel-skylib
|
closed
|
Move gazelle plugin into a new git repo
|
type: process
|
After #400, I don't understand why the gazelle plugin belongs in this git repo:
* skylib and the gazelle plugin now have separate bazel workspaces
* gazelle plugin doesn't get built by `bazel build //...`
* gazelle plugin doesn't get tested by `bazel test //...`
* gazelle plugin depends only on skylib's public api
* skylib does not depend on the gazelle plugin at all
_Originally posted by @tetromino in https://github.com/bazelbuild/bazel-skylib/issues/410#issuecomment-1385955577_
|
1.0
|
Move gazelle plugin into a new git repo - After #400, I don't understand why the gazelle plugin belongs in this git repo:
* skylib and the gazelle plugin now have separate bazel workspaces
* gazelle plugin doesn't get built by `bazel build //...`
* gazelle plugin doesn't get tested by `bazel test //...`
* gazelle plugin depends only on skylib's public api
* skylib does not depend on the gazelle plugin at all
_Originally posted by @tetromino in https://github.com/bazelbuild/bazel-skylib/issues/410#issuecomment-1385955577_
|
process
|
move gazelle plugin into a new git repo after i don t understand why the gazelle plugin belongs in this git repo skylib and the gazelle plugin now have separate bazel workspaces gazelle plugin doesn t get built by bazel build gazelle plugin doesn t get tested by bazel test gazelle plugin depends only on skylib s public api skylib does not depend on the gazelle plugin at all originally posted by tetromino in
| 1
|
41,201
| 2,868,984,605
|
IssuesEvent
|
2015-06-05 22:22:42
|
dart-lang/pub
|
https://api.github.com/repos/dart-lang/pub
|
opened
|
Consider not defaulting to run an admin port for the editor
|
enhancement Priority-Low Pub-Serve
|
<a href="https://github.com/sethladd"><img src="https://avatars.githubusercontent.com/u/5479?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [sethladd](https://github.com/sethladd)**
_Originally opened as dart-lang/sdk#20924_
----
For pub serve, it starts a secret websocket admin port, specifically for the Editor. Not all users use the editor, so pub serve doesn't have to assume Editor always needs the port.
Humble recommendation: consider adding a secret flag that only the editor (or other user facing tools) will use to turn on this admin port.
Seems like something an editor should opt into.
|
1.0
|
Consider not defaulting to run an admin port for the editor - <a href="https://github.com/sethladd"><img src="https://avatars.githubusercontent.com/u/5479?v=3" align="left" width="96" height="96"hspace="10"></img></a> **Issue by [sethladd](https://github.com/sethladd)**
_Originally opened as dart-lang/sdk#20924_
----
For pub serve, it starts a secret websocket admin port, specifically for the Editor. Not all users use the editor, so pub serve doesn't have to assume Editor always needs the port.
Humble recommendation: consider adding a secret flag that only the editor (or other user facing tools) will use to turn on this admin port.
Seems like something an editor should opt into.
|
non_process
|
consider not defaulting to run an admin port for the editor issue by originally opened as dart lang sdk for pub serve it starts a secret websocket admin port specifically for the editor not all users use the editor so pub serve doesn t have to assume editor always needs the port humble recommendation consider adding a secret flag that only the editor or other user facing tools will use to turn on this admin port seems like something an editor should opt into
| 0
|
177,721
| 13,744,714,841
|
IssuesEvent
|
2020-10-06 00:45:21
|
ketan55patil/student_enrollment_api
|
https://api.github.com/repos/ketan55patil/student_enrollment_api
|
opened
|
Unit test for fetch student record
|
MVP Test
|
Related to: #8
Test case #|id (int)|firstName (str)|lastName (str)|class (str)|nationality (str)|Expected output
------------ | ------------- | ------------ | ------------ | ------------ | ------------ | ------------
1|Empty/Invalid|X|X|Empty/Invalid|X|Error
2|Valid|X|X|Invalid/Valid|X|Error
3|Invalid/Valid|X|X|Valid|X|Error
4|Valid|X|X|Empty|X|Success
5|Empty|X|X|Valid|X|Success
X = Don't care
Sample Valid Input:
```
1) Fetch bulk record: all students in database for that class
GET Request, param in uri (http://yourdomain/fetchStudents? class= 3 A)
2) Fetch student record by student id
GET Request, param in uri (http://yourdomain/fetchStudents? Id=223444)
```
|
1.0
|
Unit test for fetch student record - Related to: #8
Test case #|id (int)|firstName (str)|lastName (str)|class (str)|nationality (str)|Expected output
------------ | ------------- | ------------ | ------------ | ------------ | ------------ | ------------
1|Empty/Invalid|X|X|Empty/Invalid|X|Error
2|Valid|X|X|Invalid/Valid|X|Error
3|Invalid/Valid|X|X|Valid|X|Error
4|Valid|X|X|Empty|X|Success
5|Empty|X|X|Valid|X|Success
X = Don't care
Sample Valid Input:
```
1) Fetch bulk record: all students in database for that class
GET Request, param in uri (http://yourdomain/fetchStudents? class= 3 A)
2) Fetch student record by student id
GET Request, param in uri (http://yourdomain/fetchStudents? Id=223444)
```
|
non_process
|
unit test for fetch student record related to test case id int firstname str lastname str class str nationality str expected output empty invalid x x empty invalid x error valid x x invalid valid x error invalid valid x x valid x error valid x x empty x success empty x x valid x success x don t care sample valid input fetch bulk record all students in database for that class get request param in uri class a fetch student record by student id get request param in uri id
| 0
|
3,404
| 6,520,153,146
|
IssuesEvent
|
2017-08-28 15:25:35
|
DynareTeam/dynare
|
https://api.github.com/repos/DynareTeam/dynare
|
closed
|
Potentially change treatment of #-expressions in LaTeX - Code
|
preprocessor
|
I have a mod-file where I use `write_latex_dynamic_model;`
The file contains an expression
`#delta_2=delta_2divdelta_1*delta_1;`
We should try to add a way to define a LaTeX name for this expression. Moreover, I noticed that sometimes, the LaTeX-Code adds a time t-index to this expression although expressions cannot be lagged or leaded. This should also be removed if possible.
|
1.0
|
Potentially change treatment of #-expressions in LaTeX - Code - I have a mod-file where I use `write_latex_dynamic_model;`
The file contains an expression
`#delta_2=delta_2divdelta_1*delta_1;`
We should try to add a way to define a LaTeX name for this expression. Moreover, I noticed that sometimes, the LaTeX-Code adds a time t-index to this expression although expressions cannot be lagged or leaded. This should also be removed if possible.
|
process
|
potentially change treatment of expressions in latex code i have a mod file where i use write latex dynamic model the file contains an expression delta delta delta we should try to add a way to define a latex name for this expression moreover i noticed that sometimes the latex code adds a time t index to this expression although expressions cannot be lagged or leaded this should also be removed if possible
| 1
|
724,854
| 24,943,466,494
|
IssuesEvent
|
2022-10-31 21:05:38
|
bounswe/bounswe2022group9
|
https://api.github.com/repos/bounswe/bounswe2022group9
|
closed
|
[Frontend] Review for Axios and Routing Pull Request
|
Priority: High Completed Frontend
|
Deadline: 31.10.2022 11.59
TODO:
- [x] The pull request for axios and routing should be reviewed.
- [x] The pull request should be merged.
|
1.0
|
[Frontend] Review for Axios and Routing Pull Request - Deadline: 31.10.2022 11.59
TODO:
- [x] The pull request for axios and routing should be reviewed.
- [x] The pull request should be merged.
|
non_process
|
review for axios and routing pull request deadline todo the pull request for axios and routing should be reviewed the pull request should be merged
| 0
|
5,458
| 8,320,067,998
|
IssuesEvent
|
2018-09-25 19:03:30
|
GoogleCloudPlatform/google-cloud-python
|
https://api.github.com/repos/GoogleCloudPlatform/google-cloud-python
|
opened
|
Bigtable: 'test_create_instance_defaults' flakes in w/ 429
|
api: bigtable flaky testing type: process
|
From: https://circleci.com/gh/GoogleCloudPlatform/google-cloud-python/8346
```python
______________ TestInstanceAdminAPI.test_create_instance_defaults ______________
self = <tests.system.TestInstanceAdminAPI testMethod=test_create_instance_defaults>
def test_create_instance_defaults(self):
from google.cloud.bigtable import enums
ALT_INSTANCE_ID = 'ndef' + unique_resource_id('-')
instance = Config.CLIENT.instance(ALT_INSTANCE_ID, labels=LABELS)
ALT_CLUSTER_ID = ALT_INSTANCE_ID+'-cluster'
cluster = instance.cluster(
ALT_CLUSTER_ID, location_id=LOCATION_ID, serve_nodes=SERVE_NODES)
> operation = instance.create(clusters=[cluster])
tests/system.py:159:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
google/cloud/bigtable/instance.py:285: in create
clusters={c.cluster_id: c._to_pb() for c in clusters})
google/cloud/bigtable_admin_v2/gapic/bigtable_instance_admin_client.py:323: in create_instance
request, retry=retry, timeout=timeout, metadata=metadata)
../api_core/google/api_core/gapic_v1/method.py:139: in __call__
return wrapped_func(*args, **kwargs)
../api_core/google/api_core/retry.py:260: in retry_wrapped_func
on_error=on_error,
../api_core/google/api_core/retry.py:177: in retry_target
return target()
../api_core/google/api_core/timeout.py:206: in func_with_timeout
return func(*args, **kwargs)
../api_core/google/api_core/grpc_helpers.py:61: in error_remapped_callable
six.raise_from(exceptions.from_grpc_error(exc), exc)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
value = ResourceExhausted("Insufficient node quota. You requested a node count of 3 no... in this zone. Contact us to request a quota increase: https://goo.gl/pf2Su8",)
from_value = <_Rendezvous of RPC that terminated with:
status = StatusCode.RESOURCE_EXHAUS...tact us to request a quota increase: https://goo.gl/pf2Su8","grpc_status":8}"
>
def raise_from(value, from_value):
> raise value
E ResourceExhausted: 429 Insufficient node quota. You requested a node count of 3 nodes for your cluster, but this request would exceed your project's node quota of 30 nodes total across all clusters in this zone. Contact us to request a quota increase: https://goo.gl/pf2Su8
``
|
1.0
|
Bigtable: 'test_create_instance_defaults' flakes in w/ 429 - From: https://circleci.com/gh/GoogleCloudPlatform/google-cloud-python/8346
```python
______________ TestInstanceAdminAPI.test_create_instance_defaults ______________
self = <tests.system.TestInstanceAdminAPI testMethod=test_create_instance_defaults>
def test_create_instance_defaults(self):
from google.cloud.bigtable import enums
ALT_INSTANCE_ID = 'ndef' + unique_resource_id('-')
instance = Config.CLIENT.instance(ALT_INSTANCE_ID, labels=LABELS)
ALT_CLUSTER_ID = ALT_INSTANCE_ID+'-cluster'
cluster = instance.cluster(
ALT_CLUSTER_ID, location_id=LOCATION_ID, serve_nodes=SERVE_NODES)
> operation = instance.create(clusters=[cluster])
tests/system.py:159:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
google/cloud/bigtable/instance.py:285: in create
clusters={c.cluster_id: c._to_pb() for c in clusters})
google/cloud/bigtable_admin_v2/gapic/bigtable_instance_admin_client.py:323: in create_instance
request, retry=retry, timeout=timeout, metadata=metadata)
../api_core/google/api_core/gapic_v1/method.py:139: in __call__
return wrapped_func(*args, **kwargs)
../api_core/google/api_core/retry.py:260: in retry_wrapped_func
on_error=on_error,
../api_core/google/api_core/retry.py:177: in retry_target
return target()
../api_core/google/api_core/timeout.py:206: in func_with_timeout
return func(*args, **kwargs)
../api_core/google/api_core/grpc_helpers.py:61: in error_remapped_callable
six.raise_from(exceptions.from_grpc_error(exc), exc)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
value = ResourceExhausted("Insufficient node quota. You requested a node count of 3 no... in this zone. Contact us to request a quota increase: https://goo.gl/pf2Su8",)
from_value = <_Rendezvous of RPC that terminated with:
status = StatusCode.RESOURCE_EXHAUS...tact us to request a quota increase: https://goo.gl/pf2Su8","grpc_status":8}"
>
def raise_from(value, from_value):
> raise value
E ResourceExhausted: 429 Insufficient node quota. You requested a node count of 3 nodes for your cluster, but this request would exceed your project's node quota of 30 nodes total across all clusters in this zone. Contact us to request a quota increase: https://goo.gl/pf2Su8
``
|
process
|
bigtable test create instance defaults flakes in w from python testinstanceadminapi test create instance defaults self def test create instance defaults self from google cloud bigtable import enums alt instance id ndef unique resource id instance config client instance alt instance id labels labels alt cluster id alt instance id cluster cluster instance cluster alt cluster id location id location id serve nodes serve nodes operation instance create clusters tests system py google cloud bigtable instance py in create clusters c cluster id c to pb for c in clusters google cloud bigtable admin gapic bigtable instance admin client py in create instance request retry retry timeout timeout metadata metadata api core google api core gapic method py in call return wrapped func args kwargs api core google api core retry py in retry wrapped func on error on error api core google api core retry py in retry target return target api core google api core timeout py in func with timeout return func args kwargs api core google api core grpc helpers py in error remapped callable six raise from exceptions from grpc error exc exc value resourceexhausted insufficient node quota you requested a node count of no in this zone contact us to request a quota increase from value rendezvous of rpc that terminated with status statuscode resource exhaus tact us to request a quota increase def raise from value from value raise value e resourceexhausted insufficient node quota you requested a node count of nodes for your cluster but this request would exceed your project s node quota of nodes total across all clusters in this zone contact us to request a quota increase
| 1
|
15,663
| 19,847,070,299
|
IssuesEvent
|
2022-01-21 08:01:45
|
ooi-data/CE09OSSM-SBD12-05-WAVSSA000-recovered_host-wavss_a_dcl_motion_recovered
|
https://api.github.com/repos/ooi-data/CE09OSSM-SBD12-05-WAVSSA000-recovered_host-wavss_a_dcl_motion_recovered
|
opened
|
๐ Processing failed: ValueError
|
process
|
## Overview
`ValueError` found in `processing_task` task during run ended on 2022-01-21T08:01:44.777251.
## Details
Flow name: `CE09OSSM-SBD12-05-WAVSSA000-recovered_host-wavss_a_dcl_motion_recovered`
Task name: `processing_task`
Error type: `ValueError`
Error message: conflicting sizes for dimension 'wavss_a_buoymotion_time_dim_0': length 4146 on 'wavss_a_buoymotion_time_dim_0' and length 1382 on {'time': 'date_string', 'wavss_move': 'east_offset_array', 'wavss_a_buoymotion_time_dim_0': 'wavss_a_buoymotion_time'}
<details>
<summary>Traceback</summary>
```
Traceback (most recent call last):
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/ooi_harvester/processor/pipeline.py", line 165, in processing
final_path = finalize_data_stream(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/ooi_harvester/processor/__init__.py", line 77, in finalize_data_stream
temp_ds = xr.open_dataset(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/backends/api.py", line 495, in open_dataset
backend_ds = backend.open_dataset(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/backends/zarr.py", line 838, in open_dataset
ds = store_entrypoint.open_dataset(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/backends/store.py", line 39, in open_dataset
ds = Dataset(vars, attrs=attrs)
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/core/dataset.py", line 751, in __init__
variables, coord_names, dims, indexes, _ = merge_data_and_coords(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/core/merge.py", line 488, in merge_data_and_coords
return merge_core(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/core/merge.py", line 645, in merge_core
dims = calculate_dimensions(variables)
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/core/dataset.py", line 205, in calculate_dimensions
raise ValueError(
ValueError: conflicting sizes for dimension 'wavss_a_buoymotion_time_dim_0': length 4146 on 'wavss_a_buoymotion_time_dim_0' and length 1382 on {'time': 'date_string', 'wavss_move': 'east_offset_array', 'wavss_a_buoymotion_time_dim_0': 'wavss_a_buoymotion_time'}
```
</details>
|
1.0
|
๐ Processing failed: ValueError - ## Overview
`ValueError` found in `processing_task` task during run ended on 2022-01-21T08:01:44.777251.
## Details
Flow name: `CE09OSSM-SBD12-05-WAVSSA000-recovered_host-wavss_a_dcl_motion_recovered`
Task name: `processing_task`
Error type: `ValueError`
Error message: conflicting sizes for dimension 'wavss_a_buoymotion_time_dim_0': length 4146 on 'wavss_a_buoymotion_time_dim_0' and length 1382 on {'time': 'date_string', 'wavss_move': 'east_offset_array', 'wavss_a_buoymotion_time_dim_0': 'wavss_a_buoymotion_time'}
<details>
<summary>Traceback</summary>
```
Traceback (most recent call last):
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/ooi_harvester/processor/pipeline.py", line 165, in processing
final_path = finalize_data_stream(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/ooi_harvester/processor/__init__.py", line 77, in finalize_data_stream
temp_ds = xr.open_dataset(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/backends/api.py", line 495, in open_dataset
backend_ds = backend.open_dataset(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/backends/zarr.py", line 838, in open_dataset
ds = store_entrypoint.open_dataset(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/backends/store.py", line 39, in open_dataset
ds = Dataset(vars, attrs=attrs)
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/core/dataset.py", line 751, in __init__
variables, coord_names, dims, indexes, _ = merge_data_and_coords(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/core/merge.py", line 488, in merge_data_and_coords
return merge_core(
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/core/merge.py", line 645, in merge_core
dims = calculate_dimensions(variables)
File "/srv/conda/envs/notebook/lib/python3.9/site-packages/xarray/core/dataset.py", line 205, in calculate_dimensions
raise ValueError(
ValueError: conflicting sizes for dimension 'wavss_a_buoymotion_time_dim_0': length 4146 on 'wavss_a_buoymotion_time_dim_0' and length 1382 on {'time': 'date_string', 'wavss_move': 'east_offset_array', 'wavss_a_buoymotion_time_dim_0': 'wavss_a_buoymotion_time'}
```
</details>
|
process
|
๐ processing failed valueerror overview valueerror found in processing task task during run ended on details flow name recovered host wavss a dcl motion recovered task name processing task error type valueerror error message conflicting sizes for dimension wavss a buoymotion time dim length on wavss a buoymotion time dim and length on time date string wavss move east offset array wavss a buoymotion time dim wavss a buoymotion time traceback traceback most recent call last file srv conda envs notebook lib site packages ooi harvester processor pipeline py line in processing final path finalize data stream file srv conda envs notebook lib site packages ooi harvester processor init py line in finalize data stream temp ds xr open dataset file srv conda envs notebook lib site packages xarray backends api py line in open dataset backend ds backend open dataset file srv conda envs notebook lib site packages xarray backends zarr py line in open dataset ds store entrypoint open dataset file srv conda envs notebook lib site packages xarray backends store py line in open dataset ds dataset vars attrs attrs file srv conda envs notebook lib site packages xarray core dataset py line in init variables coord names dims indexes merge data and coords file srv conda envs notebook lib site packages xarray core merge py line in merge data and coords return merge core file srv conda envs notebook lib site packages xarray core merge py line in merge core dims calculate dimensions variables file srv conda envs notebook lib site packages xarray core dataset py line in calculate dimensions raise valueerror valueerror conflicting sizes for dimension wavss a buoymotion time dim length on wavss a buoymotion time dim and length on time date string wavss move east offset array wavss a buoymotion time dim wavss a buoymotion time
| 1
|
222,688
| 17,088,485,042
|
IssuesEvent
|
2021-07-08 14:35:48
|
edmcouncil/fibo
|
https://api.github.com/repos/edmcouncil/fibo
|
closed
|
Missing links to serialization files
|
bug documentation
|
(I had to install a dev environment on a new machine so thought I'd follow the instructions)
The instructions here https://github.com/rivettp/fibo/blob/master/CONTRIBUTING.md#fibo-serialization-tools say "These are:
pre-commit (no file extension)
rdf-toolkit.jar
These files are updated from time to time so it is recommended that you re-download these directly from the links below before proceeding."
However there are no links below! It gives no idea where to get these vital files from!
The rdf-toolkit repository on GitHib has the jar file but not the pre-commit.
|
1.0
|
Missing links to serialization files - (I had to install a dev environment on a new machine so thought I'd follow the instructions)
The instructions here https://github.com/rivettp/fibo/blob/master/CONTRIBUTING.md#fibo-serialization-tools say "These are:
pre-commit (no file extension)
rdf-toolkit.jar
These files are updated from time to time so it is recommended that you re-download these directly from the links below before proceeding."
However there are no links below! It gives no idea where to get these vital files from!
The rdf-toolkit repository on GitHib has the jar file but not the pre-commit.
|
non_process
|
missing links to serialization files i had to install a dev environment on a new machine so thought i d follow the instructions the instructions here say these are pre commit no file extension rdf toolkit jar these files are updated from time to time so it is recommended that you re download these directly from the links below before proceeding however there are no links below it gives no idea where to get these vital files from the rdf toolkit repository on githib has the jar file but not the pre commit
| 0
|
511,767
| 14,881,102,884
|
IssuesEvent
|
2021-01-20 10:03:56
|
factly/vidcheck
|
https://api.github.com/repos/factly/vidcheck
|
closed
|
Add fields to video entity
|
good first issue priority:medium
|
Add the following fields in `analysis` entity to keep it consistent with `claim` in Dega:
- [ ] claim_date
- [ ] checked_date
- [ ] claimant - Dependent on the issue: https://github.com/factly/vidcheck/issues/21
|
1.0
|
Add fields to video entity - Add the following fields in `analysis` entity to keep it consistent with `claim` in Dega:
- [ ] claim_date
- [ ] checked_date
- [ ] claimant - Dependent on the issue: https://github.com/factly/vidcheck/issues/21
|
non_process
|
add fields to video entity add the following fields in analysis entity to keep it consistent with claim in dega claim date checked date claimant dependent on the issue
| 0
|
549,211
| 16,087,882,130
|
IssuesEvent
|
2021-04-26 13:29:53
|
h2oai/wave-ml
|
https://api.github.com/repos/h2oai/wave-ml
|
closed
|
Drop `datatable` dependency for `H2O-3` backend
|
area/core priority/blocker
|
We use `datatable` [here](https://github.com/h2oai/wave-ml/blob/da279bf1ef8fc994cbaeb7e71f5da47a0b3d981a/h2o_wave_ml/ml.py#L208) to retrieve results from prediction. This is not needed anymore and we can use a standard way.
## Goal
Retrieve results from `H2O-3` backend predictions without using `datatable`.
|
1.0
|
Drop `datatable` dependency for `H2O-3` backend - We use `datatable` [here](https://github.com/h2oai/wave-ml/blob/da279bf1ef8fc994cbaeb7e71f5da47a0b3d981a/h2o_wave_ml/ml.py#L208) to retrieve results from prediction. This is not needed anymore and we can use a standard way.
## Goal
Retrieve results from `H2O-3` backend predictions without using `datatable`.
|
non_process
|
drop datatable dependency for backend we use datatable to retrieve results from prediction this is not needed anymore and we can use a standard way goal retrieve results from backend predictions without using datatable
| 0
|
13,198
| 15,624,678,877
|
IssuesEvent
|
2021-03-21 03:54:27
|
eddieantonio/predictive-text-studio
|
https://api.github.com/repos/eddieantonio/predictive-text-studio
|
closed
|
Support selecting columns from uploaded spreadsheets
|
data-backing data-processing worker ๐ฅ High priority
|
When a spreadsheet (Excel or Google Sheets) is uploaded, it will likely not be in our ideal format, namely, first column for "word" and second column for "count".
Allow the user to select which column from their spreadhseet to use as the word column and which should be the count column.
Predicitve Text Studio should try to make an educated guess by default
|
1.0
|
Support selecting columns from uploaded spreadsheets - When a spreadsheet (Excel or Google Sheets) is uploaded, it will likely not be in our ideal format, namely, first column for "word" and second column for "count".
Allow the user to select which column from their spreadhseet to use as the word column and which should be the count column.
Predicitve Text Studio should try to make an educated guess by default
|
process
|
support selecting columns from uploaded spreadsheets when a spreadsheet excel or google sheets is uploaded it will likely not be in our ideal format namely first column for word and second column for count allow the user to select which column from their spreadhseet to use as the word column and which should be the count column predicitve text studio should try to make an educated guess by default
| 1
|
7,374
| 10,513,657,286
|
IssuesEvent
|
2019-09-27 21:12:55
|
gkiar/reproreading
|
https://api.github.com/repos/gkiar/reproreading
|
opened
|
Paper: The Rician Distribution of Noisy MRI Data
|
imaging processing stats
|
URL: [https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2254141/](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2254141/)
### This paper does...
- explains mathematically the Rician nature of noise in MR magnitude images, and how this becomes a Raleigh distribution in the absence of signal (i.e. background regions)
|
1.0
|
Paper: The Rician Distribution of Noisy MRI Data - URL: [https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2254141/](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2254141/)
### This paper does...
- explains mathematically the Rician nature of noise in MR magnitude images, and how this becomes a Raleigh distribution in the absence of signal (i.e. background regions)
|
process
|
paper the rician distribution of noisy mri data url this paper does explains mathematically the rician nature of noise in mr magnitude images and how this becomes a raleigh distribution in the absence of signal i e background regions
| 1
|
414,051
| 27,976,843,829
|
IssuesEvent
|
2023-03-25 17:35:37
|
nuxt/nuxt
|
https://api.github.com/repos/nuxt/nuxt
|
closed
|
docs: broken link
|
documentation 3.x
|
### Environment
Not applicable
### Reproduction
https://github.com/nuxt/nuxt/blob/main/docs/5.community/4.contribution.md?plain=1#L34
### Describe the bug
This link returns an http 502 error
### Additional context
_No response_
### Logs
_No response_
|
1.0
|
docs: broken link - ### Environment
Not applicable
### Reproduction
https://github.com/nuxt/nuxt/blob/main/docs/5.community/4.contribution.md?plain=1#L34
### Describe the bug
This link returns an http 502 error
### Additional context
_No response_
### Logs
_No response_
|
non_process
|
docs broken link environment not applicable reproduction describe the bug this link returns an http error additional context no response logs no response
| 0
|
40,323
| 5,201,555,544
|
IssuesEvent
|
2017-01-24 05:29:44
|
devtools-html/debugger.html
|
https://api.github.com/repos/devtools-html/debugger.html
|
closed
|
[Dark Theme] secondary text
|
design difficulty: easy in progress
|
The secondary text is an awkward gray that looks off to me.
Here is how you change a [theme color](https://github.com/devtools-html/debugger.html/blob/master/docs/local-development.md#themes)
Here is the secondary text for frames, we could also find other secondary text in breakpoints...
```patch
diff --git a/src/components/Frames.css b/src/components/Frames.css
index 34c3979..c442b66 100644
--- a/src/components/Frames.css
+++ b/src/components/Frames.css
@@ -27,6 +27,7 @@
background-color: var(--theme-tab-toolbar-background);
}
+/* => here */
.frames .location {
color: var(--theme-comment);
font-weight: lighter;
```

|
1.0
|
[Dark Theme] secondary text - The secondary text is an awkward gray that looks off to me.
Here is how you change a [theme color](https://github.com/devtools-html/debugger.html/blob/master/docs/local-development.md#themes)
Here is the secondary text for frames, we could also find other secondary text in breakpoints...
```patch
diff --git a/src/components/Frames.css b/src/components/Frames.css
index 34c3979..c442b66 100644
--- a/src/components/Frames.css
+++ b/src/components/Frames.css
@@ -27,6 +27,7 @@
background-color: var(--theme-tab-toolbar-background);
}
+/* => here */
.frames .location {
color: var(--theme-comment);
font-weight: lighter;
```

|
non_process
|
secondary text the secondary text is an awkward gray that looks off to me here is how you change a here is the secondary text for frames we could also find other secondary text in breakpoints patch diff git a src components frames css b src components frames css index a src components frames css b src components frames css background color var theme tab toolbar background here frames location color var theme comment font weight lighter
| 0
|
67,620
| 9,082,284,192
|
IssuesEvent
|
2019-02-17 10:51:48
|
foundersandcoders/master-reference
|
https://api.github.com/repos/foundersandcoders/master-reference
|
opened
|
Review and update new cohort checklist
|
documentation
|
https://github.com/foundersandcoders/master-reference/blob/faeefa255884574fddc5bcb92b46fed42a95c514/curriculum-planning/new-cohort-checklist.md
@arrested-developer @charlielafosse could you please update this as appropriate during your handover?
Also, worth reflecting on whether this checklist is truly relevant to the `master-reference` or if it is London specific.
|
1.0
|
Review and update new cohort checklist - https://github.com/foundersandcoders/master-reference/blob/faeefa255884574fddc5bcb92b46fed42a95c514/curriculum-planning/new-cohort-checklist.md
@arrested-developer @charlielafosse could you please update this as appropriate during your handover?
Also, worth reflecting on whether this checklist is truly relevant to the `master-reference` or if it is London specific.
|
non_process
|
review and update new cohort checklist arrested developer charlielafosse could you please update this as appropriate during your handover also worth reflecting on whether this checklist is truly relevant to the master reference or if it is london specific
| 0
|
12,602
| 15,007,132,558
|
IssuesEvent
|
2021-01-31 02:55:47
|
qgis/QGIS
|
https://api.github.com/repos/qgis/QGIS
|
closed
|
Difference algorithm doesn't work on Windows with MultiPoints
|
Bug Processing
|
Author Name: **gcarrillo -** (gcarrillo -)
Original Redmine Issue: [19049](https://issues.qgis.org/issues/19049)
Affected QGIS version: 3.1(master)
Redmine category:processing/qgis
---
The Difference algorithm from QGIS Processing seems to work differently depending on the Operating System used.
With the sample GPKG data attached (two layers, one multipoint and one simplepoint, only one point in each layer), such algorithm works as expected on GNU/Linux, but on Windows it does not.
On Windows, using the Difference algorithm with both input parameters pointing to the MultiPoint layer, the result is the same point, whereas on GNU/Linux the result of the Difference (Multipoint-Multipoint) is an empty layer, as expected.
See QGIS and dependency versions in the image attached.
---
- [test_difference.gpkg](https://issues.qgis.org/attachments/download/12745/test_difference.gpkg) (gcarrillo -)
- [2018-05-28.png](https://issues.qgis.org/attachments/download/12746/2018-05-28.png) (gcarrillo -)
|
1.0
|
Difference algorithm doesn't work on Windows with MultiPoints - Author Name: **gcarrillo -** (gcarrillo -)
Original Redmine Issue: [19049](https://issues.qgis.org/issues/19049)
Affected QGIS version: 3.1(master)
Redmine category:processing/qgis
---
The Difference algorithm from QGIS Processing seems to work differently depending on the Operating System used.
With the sample GPKG data attached (two layers, one multipoint and one simplepoint, only one point in each layer), such algorithm works as expected on GNU/Linux, but on Windows it does not.
On Windows, using the Difference algorithm with both input parameters pointing to the MultiPoint layer, the result is the same point, whereas on GNU/Linux the result of the Difference (Multipoint-Multipoint) is an empty layer, as expected.
See QGIS and dependency versions in the image attached.
---
- [test_difference.gpkg](https://issues.qgis.org/attachments/download/12745/test_difference.gpkg) (gcarrillo -)
- [2018-05-28.png](https://issues.qgis.org/attachments/download/12746/2018-05-28.png) (gcarrillo -)
|
process
|
difference algorithm doesn t work on windows with multipoints author name gcarrillo gcarrillo original redmine issue affected qgis version master redmine category processing qgis the difference algorithm from qgis processing seems to work differently depending on the operating system used with the sample gpkg data attached two layers one multipoint and one simplepoint only one point in each layer such algorithm works as expected on gnu linux but on windows it does not on windows using the difference algorithm with both input parameters pointing to the multipoint layer the result is the same point whereas on gnu linux the result of the difference multipoint multipoint is an empty layer as expected see qgis and dependency versions in the image attached gcarrillo gcarrillo
| 1
|
51,768
| 7,727,224,710
|
IssuesEvent
|
2018-05-25 01:16:48
|
vuejs/jp.vuejs.org
|
https://api.github.com/repos/vuejs/jp.vuejs.org
|
closed
|
[Doc]: Reorganize component props to introduce prop types earlier, fixes #16โฆ
|
documentation
|
ๆฌๅฎถใฎใใญใฅใกใณใใซๆดๆฐใใใใพใใ:page_facing_up:
Original:https://github.com/vuejs/vuejs.org/commit/eee7fcda0e902d8a2c4cfb33f50335f326300fe0
|
1.0
|
[Doc]: Reorganize component props to introduce prop types earlier, fixes #16โฆ - ๆฌๅฎถใฎใใญใฅใกใณใใซๆดๆฐใใใใพใใ:page_facing_up:
Original:https://github.com/vuejs/vuejs.org/commit/eee7fcda0e902d8a2c4cfb33f50335f326300fe0
|
non_process
|
reorganize component props to introduce prop types earlier fixes โฆ ๆฌๅฎถใฎใใญใฅใกใณใใซๆดๆฐใใใใพใใ page facing up original
| 0
|
119,085
| 15,396,635,224
|
IssuesEvent
|
2021-03-03 20:55:50
|
keepid/keepid_client
|
https://api.github.com/repos/keepid/keepid_client
|
closed
|
Admin account โ My Clients design
|
New Design Request enhancement
|
Colors of buttons under Client Actions perhaps should be the same, as the various colors (especially green and red) can be misleading.
Positioning of objects under "My Clients" header is confusing. For example, Signup Worker button doesn't really have anything to do with "My Clients". Shouldn't Signup Worker be on Admin Panel page?
Can objects under "My Clients" header be organized more neatly?
Drop down menu should hide and apply selection to page (perhaps reload page if needed) after making choice under # Items per page.
Side note: spacing between page header and top menu bar should be consistent between My Clients and Admin Panel pages.
|
1.0
|
Admin account โ My Clients design - Colors of buttons under Client Actions perhaps should be the same, as the various colors (especially green and red) can be misleading.
Positioning of objects under "My Clients" header is confusing. For example, Signup Worker button doesn't really have anything to do with "My Clients". Shouldn't Signup Worker be on Admin Panel page?
Can objects under "My Clients" header be organized more neatly?
Drop down menu should hide and apply selection to page (perhaps reload page if needed) after making choice under # Items per page.
Side note: spacing between page header and top menu bar should be consistent between My Clients and Admin Panel pages.
|
non_process
|
admin account โ my clients design colors of buttons under client actions perhaps should be the same as the various colors especially green and red can be misleading positioning of objects under my clients header is confusing for example signup worker button doesn t really have anything to do with my clients shouldn t signup worker be on admin panel page can objects under my clients header be organized more neatly drop down menu should hide and apply selection to page perhaps reload page if needed after making choice under items per page side note spacing between page header and top menu bar should be consistent between my clients and admin panel pages
| 0
|
14,038
| 16,845,308,957
|
IssuesEvent
|
2021-06-19 10:55:30
|
darktable-org/darktable
|
https://api.github.com/repos/darktable-org/darktable
|
closed
|
3.0.0 Framing: setting frame line 100% of narrow border mixes black & white
|
no-issue-activity scope: UI scope: image processing understood: unclear
|
Take an image, go to framing module in darkroom.
Set black frame line width to 100% of border width
Reduce white border width to a small value (viz 5%)
Result is an uneven mixture of black & white frame line/border.
Expected a simple black frame line.
|
1.0
|
3.0.0 Framing: setting frame line 100% of narrow border mixes black & white - Take an image, go to framing module in darkroom.
Set black frame line width to 100% of border width
Reduce white border width to a small value (viz 5%)
Result is an uneven mixture of black & white frame line/border.
Expected a simple black frame line.
|
process
|
framing setting frame line of narrow border mixes black white take an image go to framing module in darkroom set black frame line width to of border width reduce white border width to a small value viz result is an uneven mixture of black white frame line border expected a simple black frame line
| 1
|
11,029
| 13,836,166,565
|
IssuesEvent
|
2020-10-14 00:20:59
|
unicode-org/icu4x
|
https://api.github.com/repos/unicode-org/icu4x
|
closed
|
Versioning of relative dependencies
|
C-process T-question discuss
|
Cargo.toml files have things like
```
icu-locale = { version = "0.0.1", path = "../" }
```
When developing, the `path = "../"` wins. However, when deploying, I guess the case is that `version = "0.0.1"` wins? If that's the case, we should add a lint that the versions are all in sync with each other so that we don't accidentally push crates to crates.io with out-of-date dependencies.
@zbraniecki @Manishearth @filmil @echeran
|
1.0
|
Versioning of relative dependencies - Cargo.toml files have things like
```
icu-locale = { version = "0.0.1", path = "../" }
```
When developing, the `path = "../"` wins. However, when deploying, I guess the case is that `version = "0.0.1"` wins? If that's the case, we should add a lint that the versions are all in sync with each other so that we don't accidentally push crates to crates.io with out-of-date dependencies.
@zbraniecki @Manishearth @filmil @echeran
|
process
|
versioning of relative dependencies cargo toml files have things like icu locale version path when developing the path wins however when deploying i guess the case is that version wins if that s the case we should add a lint that the versions are all in sync with each other so that we don t accidentally push crates to crates io with out of date dependencies zbraniecki manishearth filmil echeran
| 1
|
158,870
| 20,035,471,887
|
IssuesEvent
|
2022-02-02 11:23:50
|
kapseliboi/vly2
|
https://api.github.com/repos/kapseliboi/vly2
|
opened
|
CVE-2019-1010266 (Medium) detected in lodash-3.10.1.tgz
|
security vulnerability
|
## CVE-2019-1010266 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-3.10.1.tgz</b></p></summary>
<p>The modern build of lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz">https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/node-cipher/node_modules/inquirer/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- node-cipher-6.3.3.tgz (Root Library)
- inquirer-0.11.4.tgz
- :x: **lodash-3.10.1.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/kapseliboi/vly2/commit/95927d6b9eb80e3fea5ee888dda6dd4446ccc809">95927d6b9eb80e3fea5ee888dda6dd4446ccc809</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
lodash prior to 4.17.11 is affected by: CWE-400: Uncontrolled Resource Consumption. The impact is: Denial of service. The component is: Date handler. The attack vector is: Attacker provides very long strings, which the library attempts to match using a regular expression. The fixed version is: 4.17.11.
<p>Publish Date: 2019-07-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-1010266>CVE-2019-1010266</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266</a></p>
<p>Release Date: 2020-09-30</p>
<p>Fix Resolution: 4.17.11</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
True
|
CVE-2019-1010266 (Medium) detected in lodash-3.10.1.tgz - ## CVE-2019-1010266 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-3.10.1.tgz</b></p></summary>
<p>The modern build of lodash modular utilities.</p>
<p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz">https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/node-cipher/node_modules/inquirer/node_modules/lodash/package.json</p>
<p>
Dependency Hierarchy:
- node-cipher-6.3.3.tgz (Root Library)
- inquirer-0.11.4.tgz
- :x: **lodash-3.10.1.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/kapseliboi/vly2/commit/95927d6b9eb80e3fea5ee888dda6dd4446ccc809">95927d6b9eb80e3fea5ee888dda6dd4446ccc809</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
lodash prior to 4.17.11 is affected by: CWE-400: Uncontrolled Resource Consumption. The impact is: Denial of service. The component is: Date handler. The attack vector is: Attacker provides very long strings, which the library attempts to match using a regular expression. The fixed version is: 4.17.11.
<p>Publish Date: 2019-07-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-1010266>CVE-2019-1010266</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>6.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-1010266</a></p>
<p>Release Date: 2020-09-30</p>
<p>Fix Resolution: 4.17.11</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
|
non_process
|
cve medium detected in lodash tgz cve medium severity vulnerability vulnerable library lodash tgz the modern build of lodash modular utilities library home page a href path to dependency file package json path to vulnerable library node modules node cipher node modules inquirer node modules lodash package json dependency hierarchy node cipher tgz root library inquirer tgz x lodash tgz vulnerable library found in head commit a href found in base branch master vulnerability details lodash prior to is affected by cwe uncontrolled resource consumption the impact is denial of service the component is date handler the attack vector is attacker provides very long strings which the library attempts to match using a regular expression the fixed version is publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
| 0
|
6,247
| 9,205,262,443
|
IssuesEvent
|
2019-03-08 10:05:02
|
timeriver/company-management
|
https://api.github.com/repos/timeriver/company-management
|
closed
|
Check profit and loss sheet
|
In Process Priority: High
|
check total profit when we dont count these things below
- capital
- the money from last year
to know profit we generate only in this year
|
1.0
|
Check profit and loss sheet - check total profit when we dont count these things below
- capital
- the money from last year
to know profit we generate only in this year
|
process
|
check profit and loss sheet check total profit when we dont count these things below capital the money from last year to know profit we generate only in this year
| 1
|
239,429
| 19,897,062,968
|
IssuesEvent
|
2022-01-25 01:06:13
|
jobda-keychain/keychain
|
https://api.github.com/repos/jobda-keychain/keychain
|
closed
|
[๊ฒ์ฆ] ํ๊ฒฝ ์ญ์
|
test
|
- [ ] ํ๊ฒฝ์ ๊ณ์ ์ด ์กด์ฌํ ๊ฒฝ์ฐ ์๋ฌ ๋ฉ์์ง๋ฅผ ๋์ฐ๋์ง
- [x] ๋ชจ๋ฌ์ด ์ ๋จ๋์ง
- [x] ์๋์ค๋ฅผ ๋๋ฅด๋ฉด ๋ชจ๋ฌ์ด ์ ๋ซํ๋์ง
- [x] ์๋ฅผ ๋๋ฅด๋ฉด ์ญ์ ๊ฐ ์ฑ๊ณต์ ์ผ๋ก ์คํ๋๋์ง
- [x] ์กด์ฌํ์ง ์๋ ์์ด๋๋ฅผ ์ญ์ ํ๋ ค๊ณ ํ๋ฉด ์ค๋ฅ๊ฐ ๋จ๋์ง
|
1.0
|
[๊ฒ์ฆ] ํ๊ฒฝ ์ญ์ - - [ ] ํ๊ฒฝ์ ๊ณ์ ์ด ์กด์ฌํ ๊ฒฝ์ฐ ์๋ฌ ๋ฉ์์ง๋ฅผ ๋์ฐ๋์ง
- [x] ๋ชจ๋ฌ์ด ์ ๋จ๋์ง
- [x] ์๋์ค๋ฅผ ๋๋ฅด๋ฉด ๋ชจ๋ฌ์ด ์ ๋ซํ๋์ง
- [x] ์๋ฅผ ๋๋ฅด๋ฉด ์ญ์ ๊ฐ ์ฑ๊ณต์ ์ผ๋ก ์คํ๋๋์ง
- [x] ์กด์ฌํ์ง ์๋ ์์ด๋๋ฅผ ์ญ์ ํ๋ ค๊ณ ํ๋ฉด ์ค๋ฅ๊ฐ ๋จ๋์ง
|
non_process
|
ํ๊ฒฝ ์ญ์ ํ๊ฒฝ์ ๊ณ์ ์ด ์กด์ฌํ ๊ฒฝ์ฐ ์๋ฌ ๋ฉ์์ง๋ฅผ ๋์ฐ๋์ง ๋ชจ๋ฌ์ด ์ ๋จ๋์ง ์๋์ค๋ฅผ ๋๋ฅด๋ฉด ๋ชจ๋ฌ์ด ์ ๋ซํ๋์ง ์๋ฅผ ๋๋ฅด๋ฉด ์ญ์ ๊ฐ ์ฑ๊ณต์ ์ผ๋ก ์คํ๋๋์ง ์กด์ฌํ์ง ์๋ ์์ด๋๋ฅผ ์ญ์ ํ๋ ค๊ณ ํ๋ฉด ์ค๋ฅ๊ฐ ๋จ๋์ง
| 0
|
266,538
| 23,244,743,491
|
IssuesEvent
|
2022-08-03 18:57:25
|
vertica/spark-connector
|
https://api.github.com/repos/vertica/spark-connector
|
closed
|
Create a process for Spark cluster testing
|
enhancement size: 3 High Priority testing docker
|
## Description
We should have a process on how to create a multi-node Spark cluster and test against it. This will be useful to simulate a real-world use case where Spark applications are submitted to a remote cluster.
Note that we should take into consideration pyspark environment, in particular Jupyter Notebook since it is a popular use case.
Reason: Improves developer debugging by aligning dev test environment with typical user environment
|
1.0
|
Create a process for Spark cluster testing - ## Description
We should have a process on how to create a multi-node Spark cluster and test against it. This will be useful to simulate a real-world use case where Spark applications are submitted to a remote cluster.
Note that we should take into consideration pyspark environment, in particular Jupyter Notebook since it is a popular use case.
Reason: Improves developer debugging by aligning dev test environment with typical user environment
|
non_process
|
create a process for spark cluster testing description we should have a process on how to create a multi node spark cluster and test against it this will be useful to simulate a real world use case where spark applications are submitted to a remote cluster note that we should take into consideration pyspark environment in particular jupyter notebook since it is a popular use case reason improves developer debugging by aligning dev test environment with typical user environment
| 0
|
89,662
| 10,606,612,783
|
IssuesEvent
|
2019-10-11 00:06:20
|
semperfiwebdesign/all-in-one-seo-pack
|
https://api.github.com/repos/semperfiwebdesign/all-in-one-seo-pack
|
opened
|
Add help text for new fields Schema Person fields
|
Documentation - In-app
|
In #2920 we added two new fields, Person's Name and Person's Image. We need to add the tooltip help text for these new fields.
|
1.0
|
Add help text for new fields Schema Person fields - In #2920 we added two new fields, Person's Name and Person's Image. We need to add the tooltip help text for these new fields.
|
non_process
|
add help text for new fields schema person fields in we added two new fields person s name and person s image we need to add the tooltip help text for these new fields
| 0
|
398
| 2,847,664,403
|
IssuesEvent
|
2015-05-29 18:16:21
|
mitchellh/packer
|
https://api.github.com/repos/mitchellh/packer
|
closed
|
Incorrect settings put into Virtualbox box config for ssh
|
bug post-processor/vagrant
|
Hi,
I have used the virtualbox-iso module to build box image with packer. When I create the image with packer I set the ssh_key_path variable to {{user `home`/.ssh/vagrant}} this works during the build however once the file is build and you try to import the box image it defaults back to using the wrong path to find the key.
```text
$ vagrant ssh-config (output)
Host default
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile /home/mark/.vagrant.d/insecure_private_key
IdentitiesOnly yes
LogLevel FATAL
```
IdentityFile should by dynamic and match the keypath given during the test. If i have multiple boxes installed they might not all use the same key so needing to overwrite the insecure_private_key under .vagrant.d would be wrong.
Mark
|
1.0
|
Incorrect settings put into Virtualbox box config for ssh - Hi,
I have used the virtualbox-iso module to build box image with packer. When I create the image with packer I set the ssh_key_path variable to {{user `home`/.ssh/vagrant}} this works during the build however once the file is build and you try to import the box image it defaults back to using the wrong path to find the key.
```text
$ vagrant ssh-config (output)
Host default
HostName 127.0.0.1
User vagrant
Port 2222
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
PasswordAuthentication no
IdentityFile /home/mark/.vagrant.d/insecure_private_key
IdentitiesOnly yes
LogLevel FATAL
```
IdentityFile should by dynamic and match the keypath given during the test. If i have multiple boxes installed they might not all use the same key so needing to overwrite the insecure_private_key under .vagrant.d would be wrong.
Mark
|
process
|
incorrect settings put into virtualbox box config for ssh hi i have used the virtualbox iso module to build box image with packer when i create the image with packer i set the ssh key path variable to user home ssh vagrant this works during the build however once the file is build and you try to import the box image it defaults back to using the wrong path to find the key text vagrant ssh config output host default hostname user vagrant port userknownhostsfile dev null stricthostkeychecking no passwordauthentication no identityfile home mark vagrant d insecure private key identitiesonly yes loglevel fatal identityfile should by dynamic and match the keypath given during the test if i have multiple boxes installed they might not all use the same key so needing to overwrite the insecure private key under vagrant d would be wrong mark
| 1
|
11,695
| 14,544,164,611
|
IssuesEvent
|
2020-12-15 17:48:26
|
MicrosoftDocs/azure-devops-docs
|
https://api.github.com/repos/MicrosoftDocs/azure-devops-docs
|
closed
|
Workloads tab -> Environments tab?
|
Pri1 devops-cicd-process/tech devops/prod doc-enhancement help wanted
|
> If you're using an AKS private cluster, the Workloads tab isn't available.
Not sure: should this say the *'Environments'* tab instead?
---
#### Document Details
โ *Do not edit this section. It is required for docs.microsoft.com โ GitHub issue linking.*
* ID: 77d95db6-9983-7346-d0eb-4b7443e4e252
* Version Independent ID: 0a22cccc-318d-592f-d1ab-09ec01d88087
* Content: [Environment - Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/environments?view=azure-devops)
* Content Source: [docs/pipelines/process/environments.md](https://github.com/MicrosoftDocs/azure-devops-docs/blob/master/docs/pipelines/process/environments.md)
* Product: **devops**
* Technology: **devops-cicd-process**
* GitHub Login: @juliakm
* Microsoft Alias: **jukullam**
|
1.0
|
Workloads tab -> Environments tab? - > If you're using an AKS private cluster, the Workloads tab isn't available.
Not sure: should this say the *'Environments'* tab instead?
---
#### Document Details
โ *Do not edit this section. It is required for docs.microsoft.com โ GitHub issue linking.*
* ID: 77d95db6-9983-7346-d0eb-4b7443e4e252
* Version Independent ID: 0a22cccc-318d-592f-d1ab-09ec01d88087
* Content: [Environment - Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/environments?view=azure-devops)
* Content Source: [docs/pipelines/process/environments.md](https://github.com/MicrosoftDocs/azure-devops-docs/blob/master/docs/pipelines/process/environments.md)
* Product: **devops**
* Technology: **devops-cicd-process**
* GitHub Login: @juliakm
* Microsoft Alias: **jukullam**
|
process
|
workloads tab environments tab if you re using an aks private cluster the workloads tab isn t available not sure should this say the environments tab instead document details โ do not edit this section it is required for docs microsoft com โ github issue linking id version independent id content content source product devops technology devops cicd process github login juliakm microsoft alias jukullam
| 1
|
129,361
| 5,095,589,690
|
IssuesEvent
|
2017-01-03 15:40:26
|
RobotLocomotion/drake
|
https://api.github.com/repos/RobotLocomotion/drake
|
closed
|
LCM Message Modifications Not Applied Automatically By Build System
|
priority: medium team: kitware type: bug
|
When modifying an LCM message definition, the newly generated python bindings are not automatically installed when issuing the `make` command. Two current work-arounds include deleting `[drake distro]/build/lib/python7.2` or executing `make install`. The build system should automatically detect changes in the LCM message definitions and install the newly generated python code without the user having to go through the above-mentioned workarounds.
|
1.0
|
LCM Message Modifications Not Applied Automatically By Build System - When modifying an LCM message definition, the newly generated python bindings are not automatically installed when issuing the `make` command. Two current work-arounds include deleting `[drake distro]/build/lib/python7.2` or executing `make install`. The build system should automatically detect changes in the LCM message definitions and install the newly generated python code without the user having to go through the above-mentioned workarounds.
|
non_process
|
lcm message modifications not applied automatically by build system when modifying an lcm message definition the newly generated python bindings are not automatically installed when issuing the make command two current work arounds include deleting build lib or executing make install the build system should automatically detect changes in the lcm message definitions and install the newly generated python code without the user having to go through the above mentioned workarounds
| 0
|
13,104
| 15,496,570,397
|
IssuesEvent
|
2021-03-11 02:55:45
|
dluiscosta/weather_api
|
https://api.github.com/repos/dluiscosta/weather_api
|
opened
|
Establish CI/CD
|
development process enhancement project enhancement question
|
Establish automated pipeline for testing and deploying the API to a host with public access.
This involves finding a suitable, free host for that.
|
1.0
|
Establish CI/CD - Establish automated pipeline for testing and deploying the API to a host with public access.
This involves finding a suitable, free host for that.
|
process
|
establish ci cd establish automated pipeline for testing and deploying the api to a host with public access this involves finding a suitable free host for that
| 1
|
18,873
| 24,804,551,923
|
IssuesEvent
|
2022-10-25 02:29:01
|
unicode-org/icu4x
|
https://api.github.com/repos/unicode-org/icu4x
|
opened
|
Split up the ffi CI job
|
T-task A-ffi C-process S-small needs-approval
|
The ffi CI job performs a lot of loosely related tasks that mostly don't leverage the previous one's build artifacts, and the ffi job is quickly becoming our slowest job. This could be mitigated by splitting the job apart more.
CC @Manishearth @echeran
|
1.0
|
Split up the ffi CI job - The ffi CI job performs a lot of loosely related tasks that mostly don't leverage the previous one's build artifacts, and the ffi job is quickly becoming our slowest job. This could be mitigated by splitting the job apart more.
CC @Manishearth @echeran
|
process
|
split up the ffi ci job the ffi ci job performs a lot of loosely related tasks that mostly don t leverage the previous one s build artifacts and the ffi job is quickly becoming our slowest job this could be mitigated by splitting the job apart more cc manishearth echeran
| 1
|
17,350
| 23,173,027,295
|
IssuesEvent
|
2022-07-31 01:57:07
|
lynnandtonic/nestflix.fun
|
https://api.github.com/repos/lynnandtonic/nestflix.fun
|
closed
|
Add The Crowned Queen from โHotel del Lunaโ (Screenshots and Poster Added)
|
suggested title in process
|
Please add as much of the following info as you can:
Title: The Crowned Queen
Type (film/tv show): TV show - historical drama (Korean)
Film or show in which it appears: Hotel del Luna
Is the parent film/show streaming anywhere? Yes - Netflix
About when in the parent film/show does it appear? Ep. 1x06: "Episode 6"
Actual footage of the film/show can be seen (yes/no)? Yes; Time stamps: 30:48 - 31:47, 49:04 - 50:06, 50:51 - 51:33 (Second half of last clip intersperced with reactions of person watching it.)
Synopsis: A queen hires a kisaeng who looks similar to take her place in the palace in order to stay safe.
Starring: Yu O as King Yi Hyeon
Production Company: tvM
Fun Fact: Yu O was cast to take over the role of Yi Hyeon when the original actor, Bang Tae-u, died of cardiac arrest during a workout before filming began. This would have been Bang's first leading role.
|
1.0
|
Add The Crowned Queen from โHotel del Lunaโ (Screenshots and Poster Added) - Please add as much of the following info as you can:
Title: The Crowned Queen
Type (film/tv show): TV show - historical drama (Korean)
Film or show in which it appears: Hotel del Luna
Is the parent film/show streaming anywhere? Yes - Netflix
About when in the parent film/show does it appear? Ep. 1x06: "Episode 6"
Actual footage of the film/show can be seen (yes/no)? Yes; Time stamps: 30:48 - 31:47, 49:04 - 50:06, 50:51 - 51:33 (Second half of last clip intersperced with reactions of person watching it.)
Synopsis: A queen hires a kisaeng who looks similar to take her place in the palace in order to stay safe.
Starring: Yu O as King Yi Hyeon
Production Company: tvM
Fun Fact: Yu O was cast to take over the role of Yi Hyeon when the original actor, Bang Tae-u, died of cardiac arrest during a workout before filming began. This would have been Bang's first leading role.
|
process
|
add the crowned queen from โhotel del lunaโ screenshots and poster added please add as much of the following info as you can title the crowned queen type film tv show tv show historical drama korean film or show in which it appears hotel del luna is the parent film show streaming anywhere yes netflix about when in the parent film show does it appear ep episode actual footage of the film show can be seen yes no yes time stamps second half of last clip intersperced with reactions of person watching it synopsis a queen hires a kisaeng who looks similar to take her place in the palace in order to stay safe starring yu o as king yi hyeon production company tvm fun fact yu o was cast to take over the role of yi hyeon when the original actor bang tae u died of cardiac arrest during a workout before filming began this would have been bang s first leading role
| 1
|
7,621
| 10,727,743,309
|
IssuesEvent
|
2019-10-28 12:27:37
|
prisma/prisma2
|
https://api.github.com/repos/prisma/prisma2
|
closed
|
Support for more kinds of join tables
|
bug/2-confirmed kind/bug process/candidate
|
From my limited understanding of the migration engine, I gather that we only support a very specific type of join table, where the columns & the table itself are named in a format we recognize. This leads to some popular sample DBs being unusable "out of the box". Examples: Chinook, IMDB.
It would be nice to go over some of these datasets and support more popular ways of managing join tables.
|
1.0
|
Support for more kinds of join tables - From my limited understanding of the migration engine, I gather that we only support a very specific type of join table, where the columns & the table itself are named in a format we recognize. This leads to some popular sample DBs being unusable "out of the box". Examples: Chinook, IMDB.
It would be nice to go over some of these datasets and support more popular ways of managing join tables.
|
process
|
support for more kinds of join tables from my limited understanding of the migration engine i gather that we only support a very specific type of join table where the columns the table itself are named in a format we recognize this leads to some popular sample dbs being unusable out of the box examples chinook imdb it would be nice to go over some of these datasets and support more popular ways of managing join tables
| 1
|
12,844
| 15,098,508,435
|
IssuesEvent
|
2021-02-07 23:01:47
|
unascribed/NotEnoughCreativity
|
https://api.github.com/repos/unascribed/NotEnoughCreativity
|
closed
|
Another crash
|
k: Incompatibility v: Forge 1.16
|
Hello! with the new version you released that should repair the compatibility between Not enough Creativity and fast workbench, when clicking on the switch button I have this crash: https://pastebin.com/7CZwmW6D
|
True
|
Another crash - Hello! with the new version you released that should repair the compatibility between Not enough Creativity and fast workbench, when clicking on the switch button I have this crash: https://pastebin.com/7CZwmW6D
|
non_process
|
another crash hello with the new version you released that should repair the compatibility between not enough creativity and fast workbench when clicking on the switch button i have this crash
| 0
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.