This commit is contained in:
Timur A. Fatkhullin
2024-05-02 23:51:11 +03:00
parent 0d64e0cf44
commit 6de9127e58
5 changed files with 195 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ namespace adc
struct AdcValueHolderErrorCategory : public std::error_category {
AdcValueHolderErrorCategory() : std::error_category() {}
const char* name() const noexcept { return "DEVA_DEVICE_ATTRIBUTE"; }
const char* name() const noexcept { return "ADC_VALUEHOLDER_CATEGORY"; }
std::string message(int ec) const
{
@@ -404,6 +404,8 @@ protected:
}
public:
typedef SerializedT serialized_t;
/* CONSTRUCTORS AND DESTRUCTOR */
template <typename GT,