Does it make any sense to use inline keyword with templates?

74,605

Solution 1

It is not irrelevant. And no, not every function template is inline by default. The standard is even explicit about it in Explicit specialization ([temp.expl.spec])

Have the following:

a.cc

#include "tpl.h"

b.cc

#include "tpl.h"

tpl.h (taken from Explicit Specialization):

#ifndef TPL_H
#define TPL_H
template<class T> void f(T) {}
template<class T> inline T g(T) {}

template<> inline void f<>(int) {} // OK: inline
template<> int g<>(int) {} // error: not inline
#endif

Compile this, et voila:

g++ a.cc b.cc
/tmp/ccfWLeDX.o: In function `int g<int>(int)':
inlinexx2.cc:(.text+0x0): multiple definition of `int g<int>(int)'
/tmp/ccUa4K20.o:inlinexx.cc:(.text+0x0): first defined here
collect2: ld returned 1 exit status

Not stating inline when doing explicit instantiation may also lead to issues.

So in summary: For non fully specialized function templates, i.e. ones that carry at least one unknown type, you can omit inline, and not receive errors, but still they are not inline. For full specializations, i.e. ones that use only known types, you cannot omit it.

Proposed rule of thumb: Write inline if you mean it and just be consistent. It makes you think less about whether to or not to just because you can. (This rule of thumb is conforming to Vandevoorde's/Josuttis's C++ Template: The Complete Guide).

Solution 2

It's irrelevant. All templates are already inline- not to mention that as of 2012, the only use of the inline keyword is to stop compilers complaining about ODR violations. You are absolutely correct- your current-generation compiler will know what to inline on it's own and can probably do so even between translation units.

Solution 3

As you suggested, inline is a hint to the compiler and nothing more. It can choose to ignore it or, indeed, to inline functions not marked inline.

Using inline with templates used to be a (poor) way of getting round the issue that each compilation unit would create a separate object for the same templated class which would then cause duplication issues at link time. By using inline (I think) the name mangling works out different which gets round the name clash at link time but at the expense of vastly bloated code.  

Marshall Cline explains it here better than I can.

Share:
74,605
mip
Author by

mip

Updated on September 26, 2021

Comments

  • mip
    mip almost 3 years

    Since templates are defined within headers and compiler is able to determine if inlining a function is advantageous, does it make any sense? I've heard that modern compilers know better when to inline a function and are ignoring inline hint.


    edit: I would like to accept both answers, but this is not possible. To close the issue I am accepting Sebastian Mach's answer, because it received most votes and he is formally right, but as I mentioned in comments I consider Puppy's and Component 10's answers as correct ones too, from different point of view.

    The problem is in C++ semantics, which is not strict in case of inline keyword and inlining. Sebastian Mach says "write inline if you mean it", but what is actually meant by inline is not clear as it evolved from its original meaning to a directive that "stops compilers bitching about ODR violations" as Puppy says.

  • Sebastian Mach
    Sebastian Mach about 12 years
    The standard does not state that all templates are inline.
  • Component 10
    Component 10 about 12 years
    @Xeo: That didn't used to be the case. Check here: gcc.gnu.org/onlinedocs/gcc-4.0.4/gcc/… I assume that has changed more recently, that's why I was talking in the past tense.
  • mip
    mip about 12 years
    It's true for explicit specializations - they are like plain functions. But here -> template<class T> inline T g(T) {} inline is not required and you could have written template<class T> T g(T) {}
  • Sebastian Mach
    Sebastian Mach about 12 years
    @Xeo: Can you point me to the part of The Standard which states that function templates are always inline? Because, they are not.
  • Sebastian Mach
    Sebastian Mach about 12 years
    One could have written, true. But that doesn't imply inlineness, even if it appears like that. Vandevoorde and Josuttis also state exactly that in C++ Templates: The complete Guide
  • mip
    mip about 12 years
    There's a bit weaker statement that templates can have multiple definitions (3.2/5) --> stackoverflow.com/a/10211420/205955 I agree that this does not imply that they are formally inline. However, it all comes down to this in practice. So, both answers are correct from different points of view.
  • Sebastian Mach
    Sebastian Mach about 12 years
    I added a rule-of-thumb. I personally dislike omitting inline just because you can, and then re-introducing it when you must. I really prefer to say inline when you mean it.
  • Xeo
    Xeo about 12 years
    @phresnel: Interesting, I could swear I've read that in the standard. Maybe I mixed it up with the fact that function templates are exempt from the ODR (§14.5.5.1 p7 & p8). My bad, I removed the wrong comment.
  • Ben Voigt
    Ben Voigt almost 12 years
    @phresnel: But templates have the same semantics as inline-marked functions (that is, multiple equivalent definitions may be passed to the linker, which will select one). That, not inlining, is the real function of the inline keyword.
  • Sebastian Mach
    Sebastian Mach almost 12 years
    @BenVoigt: I know about the ODR meaning of inline. Maybe have a peek at my answer below (or above, depending on chosen sorting). For non-specialized templates, you are of course right, but it is formally not the same.
  • Puppy
    Puppy over 11 years
    There is no difference between a template function and an inline one, so whether or not the Standard states it is irrelevant.
  • Puppy
    Puppy over 11 years
    The explicit specialization is not a template.
  • Sebastian Mach
    Sebastian Mach over 11 years
    @DeadMG: Yet a normal function is preferred over a full specialisation upon lookup, so if they are not template, nor non-template, what are they then?
  • Sebastian Mach
    Sebastian Mach over 11 years
    @DeadMG: There is no requirement in C++ that a function template must be implemented in a header file; it can be implemented anywhere. To reflect this, I tend to recommend tagging inline what is supposed to be inline. It usually makes no difference, but in standardese, they are not the same, and they are not all inline. I accept your stance on it saying "It's irrelevant", but per the standard, not all templates are inline, only for you as a C++-user they appear as if.
  • malat
    malat almost 10 years
    For some reason the above link did not work for me. Deciphering the URL I understood the link needed to point to page 72: books.google.co.uk/…
  • Kyle Strand
    Kyle Strand over 8 years
    Your comment on the accepted answer that explicit specialization is not a template (which is obvious after being told so, of course....) is perhaps the most helpful thing on this page. Would you mind adding it to your answer as well?
  • Kyle Strand
    Kyle Strand over 8 years
    I'm not sure I understand what you mean by "Write inline if you mean it...". When could you possibly not "mean" inline for a template?
  • Sebastian Mach
    Sebastian Mach over 8 years
    @KyleStrand: Just like with normal functions. This is a bit like asking When could you possible not "mean" mov eax, alpha for an addition. With non-inline template functions, I want the same benefits of non-inline non-template functions.
  • gnzlbg
    gnzlbg almost 7 years
    This answer is incorrect. An explicit specialization of a template is a function, not a template. That function does not become inline just because the template that was specialized is marked with inline. So inline on the template is completely irrelevant. Whether that function should be inline or not has nothing to do from it being generated via a template specialization (and there are better answers than this that address when to use inline). @Puppy 's answer below is correct, this one is not. Adding inline on a template is irrelevant, and clang-tidy will actually remove it.
  • gnzlbg
    gnzlbg almost 7 years
    Also, the example just showcases ODR issues for normal functions (the behavior there has nothing to do with templates). To attempt showing that inline is not be irrelevant, the example should cover the case of explicitly specializing template<> void f<>(int) {} without the inline keyword. But even then changing the inline specifier on the template does not make any difference, because whether you mark the template inline or not is irrelevant.
  • PapaDiHatti
    PapaDiHatti about 5 years
    @Component 10 Why you think it's poor way of getting round compilation issue
  • pro-gramer
    pro-gramer almost 4 years
    The inline keyword does have some use outside of just preventing ODR-violations. For example, clang provides -finline-hint-functions to force all functions marked inline to actually inline.
  • pro-gramer
    pro-gramer almost 4 years
    The compiler may provide flags that make inline more than just a hint (e.g. clang has -finline-hint-functions). Whether it is good idea to use such flags, is another question though.
  • John
    John almost 3 years
    @Sebastian Mach "Write inline if you mean it and just be consistent. It makes you think less about whether to or not to just because you can." How to understand it in the right way? Could you please explain that in more detail for me?
  • Sebastian Mach
    Sebastian Mach over 2 years
    @John: What I mean: Instead of thinking about whether inline is required or not, just write inline if you mean it.
  • Léo Lam
    Léo Lam over 2 years
    inline also changes the inline cost threshold in Clang at least.