[eigen] NoChange_t, Sequential_t, etc. |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: Eigen <eigen@xxxxxxxxxxxxxxxxxxx>
- Subject: [eigen] NoChange_t, Sequential_t, etc.
- From: Hauke Heibel <hauke.heibel@xxxxxxxxxxxxxx>
- Date: Tue, 3 Apr 2012 10:22:42 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=wrGfuQV+GEr5p9Jz9OOLf0VUWb9BBduSrpa/JrUBduc=; b=VvmP4rkwsd/PjWHEhOxE+TcPYA3LneDcepyK8NnJ6Ut0myHvlsSOsejb0D7NrZriA7 n6GiWgJuCzOlS3l2nmBvlt1DbOBHBikd/KdkQuSCbBGfnmEUAiG8BEdFk5OIeE/ktbaR KH7Sf/My3oTaEkN0VXTIDrKpw8+XK7Ah180XtfTEXDZ6oAmc7c1XUfqdkOrMcSaMry7H +VYvfsNeDt65weYFaaJUkBCDDFOzC2TbUsIfwCE+C0Su5E0+s2gQUj7+G+doRJf/Y+js RSbsl/T9DhaeQuO5WNtYqXuxBeh7/rCs52nJ5dmv/FW+izWZi2ZY7BtiIzkUcFgJw+e3 wdsQ==
Hi guys,
are there any objections of removing the global variables
struct Sequential_t {};
namespace {
EIGEN_UNUSED Sequential_t Sequential;
}
and replacing them by
struct Sequential {};
I started using Eigen with the Intel compiler and I am getting many
warnings regarding unused variables and there is no easy way to remove
those.
I am quite sure, the "trick" above is anyways a remnant from C which
should not be required anymore. If it is still needed we could at
least typedef define the structs.
Regards,
Hauke