Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3397902
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T04:35:05+00:00 2026-05-18T04:35:05+00:00

I’m working with some legacy code, and trying to get it to compile in

  • 0

I’m working with some legacy code, and trying to get it to compile in Linux. It was originally built in visual studio, whose compiler didn’t keep with standards. Anyways, now I’m going through the code fixing it and I came across a templated function that is declared globally. I get the error:

/home/blah/blah;/blah.h:78:
error: there are no arguments to
‘Clip’ that depend on a template
parameter, so a declaration of ‘Clip’
must be available

I have been able to fix this same error before when they were in a specific scope by doing myClass::Clip. However, since it has no scope, how do I resolve this?

Updated: here’s the declaration of the Clip function:

template<class T> inline T Clip( T x, T bot, T top )
{ return(( x>=bot && x<=top ) ? x : (( x<bot ) ? bot : top )); }

The call to Clip:

src_row = Clip( dst_row + h, 0, SR ); 
//dst_row + h, 0, SR are all int's... does that help?
//btw, love the quick responses, thanks.

The call and the declaration are in different ‘.h’ files

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T04:35:06+00:00Added an answer on May 18, 2026 at 4:35 am

    Put a declaration of Clip somewhere before the template definition that caused this error. If Clip itself is not a template, an ordinary declaration will do. If Clip is a function template and you find the definition of Clip, you can usually just copy the start of that definition and replace the {...} with a ; to get a valid declaration.

    Edit: Okay, so you’ve found the definition of Clip, let’s say in clip.h. And your compile error is in problem.h.

    The best thing to do is probably to add #include <clip.h> near the top of problem.h. Make sure both have guards against multiple #includes.

    But that might not work if it introduces a circular header dependency. If adding the #include causes different errors, you can try just putting the declaration (not definition) of Clip in problem.h before the definition that gave the error. This would be the part where you just copy and paste and replace {...} with ;.

    template<class T> inline T Clip( T x, T bot, T top );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have just tried to save a simple *.rtf file with some websites and
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am trying to loop through a bunch of documents I have to put
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
I have some data like this: 1 2 3 4 5 9 2 6
I want use html5's new tag to play a wav file (currently only supported
Seemingly simple, but I cannot find anything relevant on the web. What is the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.