1,311 questions
3
votes
3
answers
152
views
Overcoming use of auto before deduction of 'auto'
When I implement a class I start with public interface and then continue with private details, which I think creates a good order for those that read the code:
class Something
{
public:
// ...
2
votes
1
answer
116
views
Using conversion operator with automatic return type deduction from base class
The following not very long program is treated differently by the current compilers:
class A {
protected:
operator auto();
};
template<class>
struct B : A {
using A::operator auto;
};
...
0
votes
1
answer
72
views
C++ auto templated function overload ambiguity
#include <iostream>
#include <concepts>
struct Sound { int amplitude; };
struct Light { int brightness; };
template <typename T>
concept Alert = std::derived_from<T, Sound> &...
0
votes
1
answer
51
views
How to create Voice Input in my own app in Android Auto?
In this page, it states that you can use Voice Input "to support building features such as an in-app digital assistant."
I've been searching, but I can't find anything related to this voice ...
1
vote
0
answers
8
views
Auto add some product attributes when adding a new product in Woocommerce
How can I Auto add some product attributes when adding a new product in Woocommerce
I need to add some attributes to each category separately
Like
Processor category
Auto attributes
A
B
C
Motherboard ...
0
votes
0
answers
68
views
Android Auto app got rejected due to Login credentials
I’ve published my Android app on the Play Store, and it’s working fine and available for download. Recently, I added auto support to the app, but the Play Store rejected it without providing a clear ...
0
votes
1
answer
372
views
Error 400: Missing 'functions[0].name' Parameter in Function Calling API for GPT-4o-mini, GPT-3.5, and GPT-4-0613 Models
I am developing a shopping assistant Chatbot. While using function calling APIs, I get an error. The "auto" does not seem to fetch any function. I use "gpt-4o-mini" model.
I ...
0
votes
1
answer
41
views
Android auto mp3 media app I wrote seemingly has no way to wait for a database query to finish
I wrote an mp3 player app that I'd like to connect to Android Auto. I wrote the service and in the OnCreate method, I want to load my list of songs from my database so that when AA calls ...
0
votes
0
answers
72
views
iOS — CoreBluetooth | Symbol not found — CBConnectPeripheralOptionEnableAutoReconnect
Running into a strange issue. CBConnectPeripheralOptionEnableAutoReconnect key from CoreBluetooth is set to be used only if iOS 17+ is available, otherwise it would fall back. But the app crashes even ...
0
votes
0
answers
65
views
S3 event integration and Auto copy Job
Inside S3 event integration, have created one AUTO COPY JOB which detects new file upload in S3 bucket and loads data into Amazon Redshift.
Its observed that after 1 hour this job doesn't do anything (...
2
votes
1
answer
130
views
C++ deduction guides for auto types
C++17 allows to create deduction guides for classes. Are they possible to be applied with autos as well?
Here is a quick example of what I'm trying to achieve:
#include <stdio.h>
struct Rect
{
...
0
votes
0
answers
57
views
Android Auto Integration with mobile (Kotlin)
I am currently working on the project on my android studio and successfully build a stable mobile app and wearable that will synced real time data from the mobile app. however, i have hard time trying ...
0
votes
1
answer
87
views
Visual Studio code C++ autocomplete does not work for variables created with auto declarator
I am working on Visual Studio Code in a codebase with custom classes and when variables are declared using auto, my autocomplete will not work. Here is an example for a function returning a smart ...
3
votes
1
answer
132
views
Multiple occurrences of placeholder type 'auto' in a type
Let me use last current draft for clause about placeholder type deduction: https://eel.is/c++draft/dcl.type.auto.deduct
Part 3 reads (bold highlighting from me):
If the placeholder-type-specifier is ...
0
votes
1
answer
77
views
What can trigger MS Access autoexec vba macro?
I have this ms access database (.mdb) which contains an autoexec macro that runs a vba sub. It works, but I have a group full of users who are all saying they never open the .mdb file. There are ...