С Новым годом! Форум программистов, компьютерный форум, киберфорум
C++
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.75/8: Рейтинг темы: голосов - 8, средняя оценка - 4.75
1659 / 488 / 106
Регистрация: 17.05.2015
Сообщений: 1,497
1

bug msvc2008/msvc2010 ? unable to match function definition to an existing declaration

20.04.2021, 18:37. Показов 1526. Ответов 2

Author24 — интернет-сервис помощи студентам
Всем привет!

Ошибка воспроизводится только на компиляторах msvc2008/msvc2010
С более новыми компиляторами такой проблемы нет.

C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
struct dummy;
 
template <bool, class = void>
struct if_ {};
 
template <class t> 
struct if_<true, t> { typedef t type; };
 
template <class t, class u>
struct same_ { enum { value = 0 }; };
 
template <class t>
struct same_ <t,t> { enum { value = 1 }; };
 
#define impl(t,u) \
    typename if_< ! same_<t,u>::value, dummy*>::type
 
#define decl(t,u) \
    impl(t,u) = 0
 
struct example
{
    template<class A>
    example(const A&, decl(A, example) );
    example(const example&);
    example();        
};
 
template<class A>
example::example(const A&, impl(A, example) )
{}
 
int main(){}
Код
error C2244: example::{ctor}: не удается сопоставить определение функции существующему объявлению
Как это можно починить ???
0
Лучшие ответы (1)
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
20.04.2021, 18:37
Ответы с готовыми решениями:

unable to match function definition to an existing declaration
возникают ошибки, природа которых не слишком понятна: 1)в специализации функции FindEl показывает...

Шаблоны классов. Ошибка `unable to match function definition to an existing declaration`
#pragma once template &lt;typename T = int&gt; class SingleBuffer { public: SingleBuffer(T fd):...

Out-of-line definition of 'ShowRecord' does not match any declaration in 'TForm1'
Unit1.cpp(35): out-of-line definition of 'ShowRecord' does not match any declaration in 'TForm1'...

bug msvc2010 ? fatal error C1001: Внутренняя ошибка в файле компилятора
Всем привет))) Компилятор msvc2010 падает от внутренней ошибки: #include &lt;type_traits&gt; ...

2
Эксперт С++
8972 / 4318 / 960
Регистрация: 15.11.2014
Сообщений: 9,760
20.04.2021, 21:36 2
Лучший ответ Сообщение было отмечено eva2326 как решение

Решение

Цитата Сообщение от eva2326 Посмотреть сообщение
Как это можно починить ?
в таких случаях Microsoft рекомендует:
To work around this problem, try simplifying or changing the program near the locations listed above.
C++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
struct dummy;
 
template <bool, class = void>
struct if_ {};
 
template <class t> 
struct if_<true, t> { typedef t type; };
 
template <class t, class u>
struct same_ { enum { value = 0 }; };
 
template <class t>
struct same_ <t,t> { enum { value = 1 }; };
 
template<class t, class u> struct help_
{
    enum { v = same_<t,u>::value };
    typedef if_<!v, dummy*>
        if_t;
    typedef typename if_t::type
        type;
};
 
#define impl(t,u) \
    typename help_<t,u>::type
 
#define decl(t,u) \
    impl(t,u) = 0
 
struct example
{
    template<class A>
    example(const A&, decl(A, example) );
    example(const example&);
    example();        
};
 
template<class A>
example::example(const A& a, impl(A, example) )
{}
 
int main(){}
1
1659 / 488 / 106
Регистрация: 17.05.2015
Сообщений: 1,497
21.04.2021, 18:11  [ТС] 3
Цитата Сообщение от hoggy Посмотреть сообщение
template<class t, class u> struct help_
В простейших случаях это действительно работает.
Во всяком случае, тесты успешно скомпилировались.

Но в реальном коде оказалась чуть более сложная конструкция, и SFINAE не сработало: неопределённый тип if_t

Вот такое упрощение успешно скомпилировалось на всей линейке студий:
C++
1
2
3
4
5
template<class t, class u, bool = same_<t,u>::value> 
struct help_;
 
template<class t, class u> struct help_ <t, u, false>
    { typedef dummy* type; };
0
21.04.2021, 18:11
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
21.04.2021, 18:11
Помогаю со студенческими работами здесь

bug msvc2015 ? using-declaration not worked
Всем привет! Следующий код не вызывает проблем у mingw, и у студий, начиная с msvc2017:...

error ROM file size does not match existing BIOS size
Добрый день! Так же Foxconn H61MX, пробовал прошить через программу FOX LiveUpdate указывая путь...

Expected function body after function declaration
почему выдается эта ошибка ?

Не пойму ошибку(131 Header does not match previous definition)...
131 Header does not match previous definition. В месте где написан тип Boolean. ...

Insert: column name or number of supplied values does not match table definition
Добрый вечер! На форме имеется 11 полей ввода: 7 string(2 comboBox &amp; 5 textBox), 3 int, 1 date. ...

Ошибка type declaration character does not match declared data
Sub zad5() Dim S, C, N As Double N = 0 Do N = N + 1 C = N^(2) / 5 S = S + C Loop While C &lt;...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2025, CyberForum.ru