- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我在使用 Clang 3.5 时遇到问题。以下是一个独立的复制品。此代码使用 VC12 编译。使用 Clang,我收到以下错误:
1>C:\Users\jcuyle\code\branches\dev\ClientSDK\test\CompilerTestbed\CompilerTestbed.cpp(111,5): error : no matching function for call to 'out_from_storage'
1> }( util::out_from_storage( rv ) );
1> ^~~~~~~~~~~~~~~~~~~~~~
1> C:\Users\jcuyle\code\branches\dev\ClientSDK\test\CompilerTestbed\CompilerTestbed.cpp(37,13): note: candidate template ignored: substitution failure [with storage_t = std::chrono::time_point<std::chrono::_V2::system_clock, std::chrono::duration<long, std::ratio<1, 1000000000> > > &]: no matching function for call to 'out_from_storage'
1> inline auto out_from_storage( storage_t && storage ) -> decltype( util::details::template out_from_storage( std::forward< storage_t >( storage ) ) )
1> ^ ~~~~
1> 1 error generated.
代码如下:
#include <stdint.h>
#include <type_traits>
#include <chrono>
#include <utility>
namespace util
{
namespace details
{
template< typename RTy, typename Ty, typename enable = void >
inline RTy out_from_storage( Ty );
template< typename Ty, typename = typename std::enable_if< std::is_trivial< typename std::decay< Ty >::type >::value, Ty >::type >
inline typename std::add_pointer< typename std::decay< Ty >::type >::type out_from_storage( Ty&& t )
{
return &t;
}
} // namespace details
template< typename storage_t >
inline auto out_from_storage( storage_t && storage ) -> decltype( util::details::out_from_storage( std::forward< storage_t >( storage ) ) )
{
return util::details::out_from_storage( std::forward< storage_t >( storage ) );
}
} // namespace util
namespace util
{
namespace details
{
template< typename enable = void >
inline int64_t out_from_storage( std::chrono::system_clock::time_point & storage )
{
return std::chrono::system_clock::to_time_t( storage );
}
} // namespace details
} // namespace util
int main(int argc, char * argv[])
{
std::chrono::system_clock::time_point out = std::chrono::system_clock::now( );
util::out_from_storage( out ); // error
util::details::out_from_storage( out ); // no error
return 0;
}
虽然此示例相当简单,但代码是用于跨 DLL 边界编码(marshal)类型的实用程序库的一部分。有许多类似的效用函数和大量针对不同类型的特化。在 VC 下一切正常,我怀疑 VC 接受的只是一些伪造的语法,但需要稍微更正确才能让 Clang 和 gcc 接受。对代码进行重大重新排序很困难,并且对系统进行重大重写以使用完全不同的方法来专门化转换函数(例如,抽出 type_traits/enable_if 并使用标签分派(dispatch)或类似方法)是不切实际的。如果有人能解释为什么 Clang 找不到 util::details::out_from_storage(std::chrono::system_clock::time_point & storage) 的匹配函数调用,即使它很明显存在(并且 VC 可以找到它)我真的很感激。我对 Clang 和 gcc 很陌生。谢谢!
最佳答案
您有一个 out_from_storage
重载,无需显式提供模板参数即可调用,它依赖于:
std::is_trivial< typename std::decay< Ty >::type >::value
您正在使用 time_point
的实例调用它,但这不是一个简单的类型,因为它没有一个简单的 default constructor。 .因此,此重载已从集合中移除。
由于没有可行的重载,调用失败。
关于c++ - Clang 候选模板忽略 : substitution failure (also fails to compile with gcc, VC 工作正常),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38406676/
我在运行 compile test:compile it:compile经常并且...希望将击键次数减少到类似 *:compile 的数量。 .不过,它似乎不起作用。 $ sbt *:compile
有人可以给我这个问题的提示(或整个解决方案!): 在 Clojurescript 项目中,如何自动将编译日期/时间硬编码在符号中,以便在使用应用程序时显示? 谢谢。 最佳答案 有多种解决方案: 使用l
我是 ember.js 框架的新手,使用 ruby on rails 和 ember.debug.js -v 1.10.1(最新版本)。我一直在网上看到 ember 更改了这个最新的补丁,但我不知
我不是 Fortran 程序员(只是短暂的经验),但我需要编译一个部分用 F77 编写的程序。在我之前有人用 Absoft 编译器编译过它,但现在我需要在另一台机器上用 g77 重复这个过程。对于 A
我运行命令 mvn clean package 我得到了上面的错误我的 pom 是: http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4.0.0
我有以下问题。 我想在测试编译阶段排除一些.java文件(** / jsfunit / *。java),另一方面,我想在编译阶段包括它们(id我使用tomcat启动tomcat:运行目标) ) 我的p
符合 wikipedia A compiler is a computer program (or set of programs) that transforms source code writt
我想构建项目,但出现如下错误: 无法执行目标 org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile
当我通过右键单击项目名称进行 Maven 安装时,出现以下错误: [INFO] Scanning for projects... [WARNING] [WARNING] Some proble
我是 Maven 的新手,我想将我的应用程序导入到 Maven。和以前一样,我想将我的 ejb 项目中的类引用到我的 war 项目中。我在类中没有错误,但是如果我在我的父项目上安装 maven,那么我
当我将 ASP.NET Web 应用程序部署到生产环境时,我使用配置转换来删除 debug="true"来自 .但是,就在今天,我注意到 web.config 中的另一个部分如下所示:
This question already has answers here: Maven Compilation Error: (use -source 7 or higher to enable
我正在使用 Maven 3.0.5 和 Spring Tool Source 3.2 并安装了 Maven 插件。当我尝试执行“运行方式---> Maven 安装”时,出现以下错误: [INFO] S
我试图用 AngularJS 创建我自己的递归指令,它调用自己以漂亮的 JSON 格式转换 View 中的对象。好吧,首先我使用 ng-include 调用带有模板的脚本,在其中使用 ng-if 验证
可以通过 @suppress annotation使用Google的Closure Compiler在每个文件的基础上禁止显示警告。但是,似乎无法同时抑制多个警告-例如globalThis和check
假设一个拥有 10 到 20 年经验的熟练开发人员从未构建过编译器或模拟器,哪一个会更具挑战性? 你能比较一下会成为障碍的问题吗? 谢谢。 最佳答案 仿真和编译是完全不同的,但由于两者都被认为是“低级
最近发现Vim中有一个命令叫compiler。您可以使用任何常见的编译器(例如,:compiler gcc、:compiler php 等)来调用它,但它似乎没有任何立竿见影的效果。 我在联机帮助页上
我试图从 spring.io 指南中部署最简单的应用程序 Guide 但是我有一些麻烦.. 我做了什么: 创建的项目。 (来自 spring.io 教程) 下载 heroku CLI 在 Intell
每当进行 Maven Build..>clean install 时,我都会遇到此错误。我尝试过使用不同版本的插件并添加 testFailureIgnore 属性,但问题仍然存在。请找到下面的 POM
我有一个 web 应用程序,我尝试使用 maven 进行编译,不幸的是,在执行 mvn clean package 时它不起作用。 stackoverflow 上有很多问题看起来都一样,但没有解决了我
我是一名优秀的程序员,十分优秀!