Tagged Questions

3
votes
4answers
158 views

union members may not have constructors, but `std::pair` okay?

union members may not have destructors or constructors. So I can't template the following class Foo on my own MyClass if MyClass has a constructor: template<class T> struct Foo { T val; …
1
vote
3answers
108 views

How to expose STL list over DLL boundary?

I have a DLL which needs to access data stored in STL containers in the host application. Because C++ has no standard ABI, and I want to support different compilers, the interface between the …
1
vote
7answers
312 views

( POD )freeing memory : is delete[] equal to delete ?

IP_ADAPTER_INFO *ptr=new IP_ADAPTER_INFO[100]; if i free using delete ptr; will it lead to memory leak, if not then why ? This is disassembly code generated by VS2005 **delete ptr;** 0041351D …
4
votes
4answers
99 views

Are there any conventions for writing POD comments for Perl?

I was able to find a page from Safari Books Online that provides a template, but having never written POD comments, I'm not sure how good it is or if it is missing anything that might be considered …
5
votes
4answers
91 views

Perl documentation (POD) browsers?

I'm looking for is a good on-screen POD reading experience. For years, I've used perldoc or man running in an xterm to read Perl documentation on screen, and a small custom program built around …
0
votes
3answers
70 views

How do I get Perl POD in string and print it in page?

I have a POD document. Now, I want to convert that POD to a parsed section like usage/description and get it in a string. Why not pod2usage? This doesn't help me to get the output in string but in …
5
votes
7answers
1k views

What’s the best way to document Perl code?

Any suggestion how I can document my Perl code? What do you use and what tools are available to help me? Which module do you use to convert pod to html?
2
votes
2answers
203 views

How to create POD and use pod2usage in perl ?

Hi, I want to create a POD for my own custom command and display the syntax for that using pod2usage() function.. Can anyone give me a simple example for it? Regards, Anandan
3
votes
2answers
80 views

How can I have link text with a URL in Pod’s L<>?

The L<name> formatting code allows you to set the display text for the link if you're linking to other POD, as in L<Display Text|link_dest>, but this isn't allowed for L<scheme:...> …
2
votes
1answer
167 views

POD class initialized with placement new default initialized?

If I initialize a POD class with placement new, can I assume that the memory will be default initialized (to zeros)? This resource clearly states that if you call the zero argument default constructor …
2
votes
3answers
454 views

Using SFINAE to detect POD-ness of a type in C++

The original title here was Workaround for SFINAE bug in VS2005 C++ This is tentative use of SFINAE to make the equivalent for the is_pod template class that exists in TR1 (In VS2005 there's no TR1 …
0
votes
2answers
94 views

How do I stop pod2html from treating “=head2 open() foo” as a function definition?

I have some POD that looks like =head2 C<close() on unopened filehandle %s> =over =item C<Yer tryna close() %s what ain't been opened yet> =back The pod2html command turns it into …